Skip to content

Commit

Permalink
fix: Wrong indentation for the bootstrap job environment (#258)
Browse files Browse the repository at this point in the history
* fix: Wrong indentation for the bootstrap job environment

* bump chart version
  • Loading branch information
khvn26 authored Aug 23, 2024
1 parent a0ed1a5 commit 1a8fc91
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion charts/flagsmith/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: flagsmith
description: Flagsmith
type: application
version: 0.54.0
version: 0.55.0
appVersion: 2.137.0
dependencies:
- name: postgresql
Expand Down
22 changes: 11 additions & 11 deletions charts/flagsmith/templates/deployment-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,17 +89,17 @@ spec:
args: ["python manage.py waitfordb && python manage.py bootstrap"]
env: {{ include (print $.Template.BasePath "/_api_environment.yaml") . | nindent 8 }}
{{- if .Values.api.bootstrap.adminEmail }}
- name: ADMIN_EMAIL
value: {{ .Values.api.bootstrap.adminEmail }}
{{- end }}
{{- if .Values.api.bootstrap.organisationName }}
- name: ORGANISATION_NAME
value: {{ .Values.api.bootstrap.organisationName }}
{{- end }}
{{- if .Values.api.bootstrap.projectName }}
- name: PROJECT_NAME
value: {{ .Values.api.bootstrap.projectName }}
{{- end }}
- name: ADMIN_EMAIL
value: {{ .Values.api.bootstrap.adminEmail }}
{{- end }}
{{- if .Values.api.bootstrap.organisationName }}
- name: ORGANISATION_NAME
value: {{ .Values.api.bootstrap.organisationName }}
{{- end }}
{{- if .Values.api.bootstrap.projectName }}
- name: PROJECT_NAME
value: {{ .Values.api.bootstrap.projectName }}
{{- end }}
{{- end }}
{{- if .Values.api.influxdbSetup.enabled }}
- name: influxdb-setup
Expand Down

0 comments on commit 1a8fc91

Please sign in to comment.