K
Q

Set map from Helm install command

7/14/2019

I have the following chart:

deployment:
  envVars:
    - name: FIRST
      value: first
    - name: SECOND
      value: second

I would like to append an extra name/value pair to the chart via the --set command in Helm. The documentation at https://github.com/helm/helm/blob/master/docs/using_helm.md#the-format-and-limitations-of---set doesn't seem to help me.

I've tried to pass --set deployment.envVars[0].name=APPEND,deployment.envVars[0].value=yes but it says no matches found.

Using Helm 2.10.

Any suggestion?

-- supercalifragilistichespirali
kubernetes-helm

Similar Questions

How to get reason for ASP.NET Core application shutting down?
How do I access MySQL as a Service on Kubernetes?
How Databases synchronize data between persistent volumens in Kubernetes
How to exclude namespace from fluent-bit logging
Where do I find Path to a PersistentVolume on Kubernetes Cluster that is running locally on Mac
Kubernetes: achieving uneven/weighted pod distribution in EKS
How does this Github Action modify deployment.yml file
How does kube-proxy handle persistent connections to a Service between pods?
GKE pod replica count in cluster
Spring boot logback can not logging to file on kubernetes multiple pods
Why when i refresh an angular application results to 404 Not Found?

0 Answers