mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
* 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>
16 lines
382 B
YAML
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
|