You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, our kbrew recipe installation has support for a particular version of the operator based on what is written on the recipe YAML.
example current installation process kbrew install kafka-operator
It would be nice if we can have something like: kbrew install kafka-operator version
The text was updated successfully, but these errors were encountered:
Apart from the base chart/operators' version, there are other things that will need versioning that are tied to a specific version of the chart. Some of the following examples will illustrate with use case:
Configurations specific to a version: For example, Version 1.2 of an application can be installed and works where as version 1.3 needs the creation of configmap as a pre-step before you actually install the app.
So the chart will have the following versions listed in the version field:
version: [1.2, 1.3]
And pre-steps will be blank for 1.2 but there will be a pre-step for version 1.3, something similar to (Don't go by exact syntax - I am just demonstrating concept here):
Currently, our kbrew recipe installation has support for a particular version of the operator based on what is written on the recipe YAML.
example current installation process
kbrew install kafka-operator
It would be nice if we can have something like:
kbrew install kafka-operator version
The text was updated successfully, but these errors were encountered: