Skip to content

Commit

Permalink
fix: remove spec from secret yaml (#226)
Browse files Browse the repository at this point in the history
  • Loading branch information
corang authored Mar 5, 2024
1 parent 05b1c19 commit e4b5848
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions src/keycloak/chart/templates/secret-postgresql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@ metadata:
namespace: {{ .Release.Namespace }}
labels:
{{- include "keycloak.labels" . | nindent 4 }}
spec:
type: Opaque
data:
database: {{ .Values.postgresql.database | b64enc }}
username: {{ .Values.postgresql.username | b64enc }}
password: {{ .Values.postgresql.password | b64enc }}
host: {{ .Values.postgresql.host | b64enc }}
port: {{ .Values.postgresql.port | toString | b64enc }}
type: Opaque
data:
database: {{ .Values.postgresql.database | b64enc }}
username: {{ .Values.postgresql.username | b64enc }}
password: {{ .Values.postgresql.password | b64enc }}
host: {{ .Values.postgresql.host | b64enc }}
port: {{ .Values.postgresql.port | toString | b64enc }}
{{- end }}

0 comments on commit e4b5848

Please sign in to comment.