Skip to content

Commit

Permalink
rasied version & changed image tag usage
Browse files Browse the repository at this point in the history
  • Loading branch information
monotek committed Jan 4, 2019
1 parent 0fabb5a commit 4845003
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion zammad/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: zammad
version: 0.1.2
version: 0.1.3
appVersion: 2.8.0
description: Zammad is a web based open source helpdesk/customer support system with many features to manage customer communication via several channels like telephone, facebook, twitter, chat and e-mails.
home: https://zammad.org
Expand Down
10 changes: 5 additions & 5 deletions zammad/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
spec:
initContainers:
- name: {{ .Chart.Name }}-init
image: {{ .Values.image.repository }}:zammad-{{ .Values.image.tag }}
image: {{ .Values.image.repository }}:{{if eq .Values.image.repository "zammad/zammad-docker-compose"}}zammad-{{ end }}{{ .Values.image.tag }}
args: [ "zammad-init" ]
env:
{{- range $key, $value := .Values.env }}
Expand All @@ -34,7 +34,7 @@ spec:
mountPath: /opt/zammad
containers:
- name: {{ .Chart.Name }}-nginx
image: {{ .Values.image.repository }}:zammad-{{ .Values.image.tag }}
image: {{ .Values.image.repository }}:{{if eq .Values.image.repository "zammad/zammad-docker-compose"}}zammad-{{ end }}{{ .Values.image.tag }}
args: [ "zammad-nginx" ]
env:
{{- range $key, $value := .Values.env }}
Expand Down Expand Up @@ -65,7 +65,7 @@ spec:
resources:
{{ toYaml .Values.resources.nginx | indent 10 }}
- name: {{ .Chart.Name }}-railsserver
image: {{ .Values.image.repository }}:zammad-{{ .Values.image.tag }}
image: {{ .Values.image.repository }}:{{if eq .Values.image.repository "zammad/zammad-docker-compose"}}zammad-{{ end }}{{ .Values.image.tag }}
args: ["zammad-railsserver"]
env:
{{- range $key, $value := .Values.env }}
Expand Down Expand Up @@ -94,7 +94,7 @@ spec:
resources:
{{ toYaml .Values.resources.railsserver | indent 10 }}
- name: {{ .Chart.Name }}-scheduler
image: {{ .Values.image.repository }}:zammad-{{ .Values.image.tag }}
image: {{ .Values.image.repository }}:{{if eq .Values.image.repository "zammad/zammad-docker-compose"}}zammad-{{ end }}{{ .Values.image.tag }}
args: [ "zammad-scheduler" ]
env:
{{- range $key, $value := .Values.env }}
Expand All @@ -108,7 +108,7 @@ spec:
resources:
{{ toYaml .Values.resources.scheduler | indent 10 }}
- name: {{ .Chart.Name }}-websocket
image: {{ .Values.image.repository }}:zammad-{{ .Values.image.tag }}
image: {{ .Values.image.repository }}:{{if eq .Values.image.repository "zammad/zammad-docker-compose"}}zammad-{{ end }}{{ .Values.image.tag }}
args: [ "zammad-websocket" ]
env:
{{- range $key, $value := .Values.env }}
Expand Down
2 changes: 1 addition & 1 deletion zammad/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ usePostgresql: true

image:
repository: zammad/zammad-docker-compose
tag: 2.8.0-35c3
tag: 2.8.0-21
pullPolicy: IfNotPresent

service:
Expand Down

0 comments on commit 4845003

Please sign in to comment.