Initial commit

This commit is contained in:
David Burke 2020-01-14 22:04:41 -05:00
commit 354d7562e5
11 changed files with 352 additions and 0 deletions

View file

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