Skip to content

Commit

Permalink
Update chart
Browse files Browse the repository at this point in the history
  • Loading branch information
gi0baro committed Nov 18, 2021
1 parent 9bc2784 commit a6800cb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions charts/tfstater/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ type: application
name: tfstater
description: An HTTP Terraform state backend with locking support

version: 0.1.2
appVersion: 0.1.0
version: 0.1.3
appVersion: 0.1.1
kubeVersion: ">=1.14.0-0"

home: https://github.com/gi0baro/tfstater
Expand Down
2 changes: 1 addition & 1 deletion charts/tfstater/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ spec:
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
{{- end }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default (printf "v%s" .Chart.AppVersion) }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default (printf "%s" .Chart.AppVersion) }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
{{- with .Values.env }}
env:
Expand Down
2 changes: 1 addition & 1 deletion charts/tfstater/templates/hooks/job-admin-user.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
{{- end }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default (printf "v%s" .Chart.AppVersion) }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default (printf "%s" .Chart.AppVersion) }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
command:
- emmett
Expand Down
2 changes: 1 addition & 1 deletion charts/tfstater/templates/hooks/job-migrations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
{{- end }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default (printf "v%s" .Chart.AppVersion) }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default (printf "%s" .Chart.AppVersion) }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
command:
- emmett
Expand Down
1 change: 1 addition & 0 deletions charts/tfstater/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ stringData:
bucket: {{ $bucket.name }}
{{- else }}
endpoint: {{ $objStoreConfig.endpoint }}
bucket: {{ $objStoreConfig.bucket }}
region: {{ $objStoreConfig.region }}
access_key: {{ $objStoreConfig.access_key }}
secret_key: {{ $objStoreConfig.secret_key }}
Expand Down

0 comments on commit a6800cb

Please sign in to comment.