Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4.2.x master default fixes #18

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: taiga
description: A Helm chart for Taiga
type: application
version: 6.4.3
appVersion: 6.4.3
version: 6.4.2
appVersion: 6.4.2
maintainers:
- name: Michael Joseph Walsh
email: github.com@nemonik.com
Expand Down
2 changes: 1 addition & 1 deletion templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@ Set value for Postgres Host
{{- if .Values.env.postgresHost }}
{{- print .Values.env.postgresHost }}
{{- else }}
{{- printf "%s-db" "taiga.fullname" }}
{{- printf "%s-db" (include "taiga.fullname" .) }}
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions templates/taiga-db-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ spec:
value: {{ .Values.env.postgresPassword | quote }}
- name: POSTGRES_USER
value: {{ .Values.env.postgresUser | quote }}
- name: PGDATA
value: "/var/lib/postgresql/data/taiga"
volumeMounts:
- mountPath: /var/lib/postgresql/data
name: taiga-db-data
Expand Down
2 changes: 1 addition & 1 deletion templates/taiga-protected-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
- name: taiga-protected
securityContext:
{{- toYaml .Values.taigaProtected.securityContext | nindent 12 }}
image: "{{ .Values.taigaProtected.image.repository }}:{{ .Values.taigaProtected.image.tag }}"
image: "{{ .Values.taigaProtected.image.repository }}:{{ .Values.taigaProtected.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.taigaProtected.image.pullPolicy }}
ports:
- name: http
Expand Down
10 changes: 5 additions & 5 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ taigaAsync:
image:
repository: taigaio/taiga-back
pullPolicy: IfNotPresent
tag: "{{ .Chart.AppVersion }}"
tag: ""

service:
type: ClusterIP
Expand Down Expand Up @@ -163,7 +163,7 @@ taigaBack:
image:
repository: taigaio/taiga-back
pullPolicy: IfNotPresent
tag: " {{ .Chart.AppVersion }}"
tag: ""

service:
type: ClusterIP
Expand Down Expand Up @@ -284,7 +284,7 @@ taigaEvents:
image:
repository: taigaio/taiga-events
pullPolicy: IfNotPresent
tag: "6.1.1"
tag: "6.4.0"

service:
type: ClusterIP
Expand Down Expand Up @@ -317,7 +317,7 @@ taigaFront:
image:
repository: taigaio/taiga-front
pullPolicy: IfNotPresent
tag: "{{ .Chart.AppVersion }}"
tag: ""

service:
type: ClusterIP
Expand Down Expand Up @@ -404,7 +404,7 @@ taigaProtected:
image:
repository: taigaio/taiga-protected
pullPolicy: IfNotPresent
tag: "{{ .Chart.AppVersion }}"
tag: "6.4.0"

service:
type: ClusterIP
Expand Down