Files
rowanr 3940c3b4c6 [stable/pgadmin] new helm chart for pgAdmin (#16357)
* pgAdmin helm chart

Signed-off-by: Rowan Ruseler <rowanruseler@gmail.com>

* moved to stable, added appVersion

Signed-off-by: Rowan Ruseler <rowanruseler@gmail.com>

* removed wrong appVersion

Signed-off-by: Rowan Ruseler <rowanruseler@gmail.com>

* Chart version upgraded to 1.0.0

Signed-off-by: Rowan Ruseler <rowanruseler@gmail.com>
2019-10-16 03:07:40 -07:00

16 lines
382 B
YAML

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