Skip to content
Snippets Groups Projects
Commit fdcfe84e authored by Andri Joos's avatar Andri Joos :blush:
Browse files

make secret type editable

parent 589b8aeb
No related branches found
No related tags found
No related merge requests found
Pipeline #7707 passed with stages
in 35 seconds
...@@ -3,7 +3,7 @@ apiVersion: v1 ...@@ -3,7 +3,7 @@ apiVersion: v1
kind: Secret kind: Secret
metadata: metadata:
name: {{ .Values.name | default "secret" | quote }} name: {{ .Values.name | default "secret" | quote }}
type: Opaque type: {{ .Values.type | default "Opaque" }}
data: data:
{{- (include "common.secret.data" .) | nindent 2 }} {{- (include "common.secret.data" .) | nindent 2 }}
{{- end }} {{- end }}
...@@ -19,6 +19,7 @@ extraIngress: ...@@ -19,6 +19,7 @@ extraIngress:
secret: secret:
name: example-secret name: example-secret
type: Generic
data: data:
username: dXNlcm5hbWU= # Base64-encoded 'username' username: dXNlcm5hbWU= # Base64-encoded 'username'
password: cGFzc3dvcmQ= # Base64-encoded 'password' password: cGFzc3dvcmQ= # Base64-encoded 'password'
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment