How to set annotations for a helm install?

by arnoldo.moen , in category: Third Party Scripts , a year ago

How to set annotations for a helm install?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by aubrey , a year ago

@arnoldo.moen 

To set annotations for a Helm install, you can use either the --set-string flag or a values.yaml file with the desired annotations. Here's how to do it:


Using --set-string flag:

  1. Determine the annotation key-value pair that you want to set. For example, let's set the annotation mycompany.com/created-by: helm: helm install my-release my-chart --set-string ingress.annotations."mycompany.com/created-by"="helm"


Using values.yaml file:

  1. Create a values.yaml file or use an existing one.
  2. Add the following content to the file: ingress: annotations: mycompany.com/created-by: helm
  3. Install the chart using the values.yaml file: helm install my-release my-chart -f values.yaml


These methods allow you to set annotations for the Helm install, which will be applied to the relevant Kubernetes resources created by the Helm chart.

Related Threads:

How to pass variables to helm install --set parameters?
How to run a script before helm install?
How to set helm chart dependency parameters?
How to install ckeditor on symfony 5?
How to use annotations in PHPUnit tests?
How to choose dependency release name for custom helm 3 chart?