Use more generic name "django" instead of glitchtip for template

variables
This commit is contained in:
David Burke 2021-02-12 17:39:59 -05:00
parent e957cae6de
commit 883d0c6d20
15 changed files with 76 additions and 76 deletions

View file

@ -1,9 +1,9 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "glitchtip.fullname" . }}-test-connection"
name: "{{ include "django.fullname" . }}-test-connection"
labels:
{{ include "glitchtip.labels" . | nindent 4 }}
{{ include "django.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
@ -11,5 +11,5 @@ spec:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "glitchtip.fullname" . }}:{{ .Values.web.service.port }}']
args: ['{{ include "django.fullname" . }}:{{ .Values.web.service.port }}']
restartPolicy: Never