Moving chart from glitchtip-frontend to here

This commit is contained in:
David Burke 2020-05-15 16:53:29 -04:00
parent 308366ca60
commit 0d5033171a
15 changed files with 87 additions and 27 deletions

View file

@ -13,6 +13,8 @@ spec:
metadata:
annotations:
checksum/secret: {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }}
checksum/configmap: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
tag: {{ .Values.image.tag }}
labels:
{{- include "glitchtip.selectorLabels" . | nindent 8 }}
spec:
@ -46,7 +48,7 @@ spec:
valueFrom:
secretKeyRef:
key: redis-password
name: {{ include "glitchtip.fullname" . }}-glitchtip-redis
name: {{ include "glitchtip.fullname" . }}-redis
- name: REDIS_HOST
value: {{ template "glitchtip.redis.host" . }}
- name: REDIS_PORT
@ -55,6 +57,8 @@ spec:
envFrom:
- secretRef:
name: {{ include "glitchtip.fullname" . }}
- configMapRef:
name: {{ include "glitchtip.fullname" . }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}