Skip to content

Commit

Permalink
fix: Fix PDB indentation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
achedeuzot committed Nov 29, 2023
1 parent ac2b530 commit 34fd480
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion helm/charts/hydra-maester/templates/pdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ spec:
control-plane: controller-manager
app.kubernetes.io/name: {{ include "hydra-maester.fullname" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{ toYaml .Values.pdb.spec }}
{{- toYaml .Values.pdb.spec | indent 2 }}
{{- end -}}
4 changes: 2 additions & 2 deletions helm/charts/hydra/templates/pdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ spec:
selector:
matchLabels:
app.kubernetes.io/name: {{ include "hydra.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{ toYaml .Values.pdb.spec }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{- toYaml .Values.pdb.spec | indent 2 }}
{{- end -}}
2 changes: 1 addition & 1 deletion helm/charts/keto/templates/pdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ spec:
selector:
matchLabels:
{{- include "keto.selectorLabels" . | nindent 6 }}
{{ toYaml .Values.pdb.spec }}
{{- toYaml .Values.pdb.spec | indent 2 }}
{{- end -}}
2 changes: 1 addition & 1 deletion helm/charts/kratos/templates/pdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ spec:
matchLabels:
app.kubernetes.io/name: {{ include "kratos.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{ toYaml .Values.pdb.spec }}
{{- toYaml .Values.pdb.spec | indent 2 }}
{{- end -}}
2 changes: 1 addition & 1 deletion helm/charts/oathkeeper-maester/templates/pdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ spec:
control-plane: controller-manager
app.kubernetes.io/name: {{ include "oathkeeper-maester.fullname" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{ toYaml .Values.pdb.spec }}
{{- toYaml .Values.pdb.spec | indent 2 }}
{{- end -}}
2 changes: 1 addition & 1 deletion helm/charts/oathkeeper/templates/pdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ spec:
matchLabels:
app.kubernetes.io/name: {{ include "oathkeeper.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{ toYaml .Values.pdb.spec }}
{{- toYaml .Values.pdb.spec | indent 2 }}
{{- end -}}

0 comments on commit 34fd480

Please sign in to comment.