Custom additional options for Broker Helm Chart installation
If you need to inject additional option(s) using environment variables, use the override.yaml
value file to add any additional environment variable(s) you may need.
Adding the --values override.yaml
will load those values into your deployment. For example:
You can do the same inline without the override.yaml file if it is more convenient.
You can add custom Kubernetes resources and objects to the chart by adding them to the values file.
Various combinations of Kubernetes options and objects are available at various levels of the specifications hierarchy, deployment, container, and pod-specific. These are listed in the default values.yaml
file as extraObjects
, extraVolumes
, extraVolumeMounts
, and extraPodSpecs
.
Be careful to use the right syntax and validate the rendered yaml
using helm template
command.
Last updated