You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We using helm secrets and argoCD vault plugin. We need the ability to encrypt the password in the parameters separately from the entire string
nats://login:pass@server:port doesn't work for us
What is the proposed change?
Change the chart
deployment.yaml
args:
{{- with .Values.config.basicCredentials }}
- --user={{ .user }}
{{- if .password }}
- --password={{ .password }}
{{- end }}
{{- end }}
values.yaml
config:
# Required if NATS basic auth is enabled
# basicCredentials:
# user: admin
# password: password
Who benefits from this change?
The correct way to transfer credentials will avoid storing the password in clear text in the values.yaml
What alternatives have you evaluated?
The text was updated successfully, but these errors were encountered:
What motivated this proposal?
We using helm secrets and argoCD vault plugin. We need the ability to encrypt the password in the parameters separately from the entire string
nats://login:pass@server:port doesn't work for us
What is the proposed change?
Change the chart
deployment.yaml
values.yaml
Who benefits from this change?
The correct way to transfer credentials will avoid storing the password in clear text in the values.yaml
What alternatives have you evaluated?
The text was updated successfully, but these errors were encountered: