able-evening-90828
08/25/2022, 7:38 PMvalueFrom:
secretKeyRef:
name: {{ .Values.oidcAuthentication.clientSecret.secretRef }}
key: {{ .Values.oidcAuthentication.clientSecret.secretKey }}
I am new to Helm, could someone experienced confirm that this is the right direction or there is some alternative that doesn't require changing the deployment template?bumpy-needle-3184
08/29/2022, 6:14 AMable-evening-90828
08/29/2022, 4:01 PMable-evening-90828
08/29/2022, 4:03 PMoidcAuthentication.clientSecret in my values.yaml file. But since we commit our values.yaml file into github, we don't want to put any secret in it. How can we pass in the client secret as a reference to the Kubernetes secret store?
It seems that I would have to modify the deployment.yaml template.bumpy-needle-3184
08/30/2022, 6:36 AMvalueFrom:
secretKeyRef:
name: {{ .Values.oidcAuthentication.clientSecret.secretRef }}
key: {{ .Values.oidcAuthentication.clientSecret.secretKey }}able-evening-90828
08/30/2022, 3:05 PM