Reference for Operational Decision Manager on Certified Kubernetes
Helm chart parameters are used to configure and install Operational Decision Manager on Certified Kubernetes.
Note: Configuration parameters and default values are different between the two ODM
charts.
Use a custom-made YAML file to specify the values of the parameters when you install the chart.
For
example:
$ helm install release_name -f myvalues.yaml /path/to/ibm-odm-prod-version.tgzIn
this case, myvalues.yaml contains the following
parameters:internalDatabase:
databaseName: my-db
secretCredentials: my-secretIt is also possible to install a release with the default configuration and a release name of
release_name. Use the following Helm command:
$ helm install release_name --set license=true /path/to/ibm-odm-prod-version.tgzNote: The license parameter set to
true is required for the chart to be
deployed.Using Helm, you specify parameters with a
--set value1=key1,value2=key2 argument
in the helm install command. For
example:$ helm install release_name --set license=true --set internalDatabase.databaseName=my-db,internalDatabase.secretCredentials=my-secret /path/to/ibm-odm-prod-version.tgzTip: You can set a list of values with the following
syntax:
--set image.pullSecrets[0]=a,image.pullSecrets[1]=bThe syntax's
equivalent in YAML: image:
pullSecrets:
- a
- b