I want to override the key which is used in a helm chart prior to installing/upgrading.
For example, the default values.yaml given in a chart is as follows, but I wish to rename "influx" to "influxdb". Is there a helm --set command I can run to do that?
service:
annotations: {}
type: ClusterIP
port: 9000
expose:
postgresql:
enabled: false
port: 8812
influx:
enabled: false
port: 9009