Skip to content

Commit

Permalink
fix indent of pod env
Browse files Browse the repository at this point in the history
  • Loading branch information
domechn committed Aug 6, 2021
1 parent c95a667 commit e5865c7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/tellery/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: tellery
type: application
version: 0.0.8
version: 0.0.9
appVersion: 0.6.0
icon: https://avatars.githubusercontent.com/u/86034719?s=400&v=4
description: A Helm Chart for quickly installing highly available Tellery on Kubernetes
Expand Down
2 changes: 1 addition & 1 deletion charts/tellery/templates/hooks/tellery-db-init.job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ spec:
- name: NODE_ENV
value: production
{{- if .Values.server.env }}
{{ toYaml .Values.server.env | indent 12 }}
{{ toYaml .Values.server.env | indent 8 }}
{{- end }}
envFrom:
- configMapRef:
Expand Down
2 changes: 1 addition & 1 deletion charts/tellery/templates/hooks/tellery-db-migrate.job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ spec:
- name: NODE_ENV
value: production
{{- if .Values.server.env }}
{{ toYaml .Values.server.env | indent 12 }}
{{ toYaml .Values.server.env | indent 8 }}
{{- end }}
envFrom:
- configMapRef:
Expand Down
2 changes: 1 addition & 1 deletion charts/tellery/templates/hooks/user-create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ spec:
- name: CREATE_USER_PASSWORD
value: {{ .Values.init.user.password }}
{{- if .Values.server.env }}
{{ toYaml .Values.server.env | indent 12 }}
{{ toYaml .Values.server.env | indent 8 }}
{{- end }}
envFrom:
- configMapRef:
Expand Down
2 changes: 1 addition & 1 deletion charts/tellery/templates/hooks/workspace-create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ spec:
- name: CREATE_CONNECTOR_URL
value: {{ include "tellery.fullname" . }}-connector:{{ .Values.connector.service.externalPort }}
{{- if .Values.server.env }}
{{ toYaml .Values.server.env | indent 12 }}
{{ toYaml .Values.server.env | indent 8 }}
{{- end }}
envFrom:
- configMapRef:
Expand Down

0 comments on commit e5865c7

Please sign in to comment.