feat: new pgAdmin4 chart (#14)

This commit is contained in:
2023-04-30 19:20:19 +01:00
committed by GitHub
parent 3108620dc4
commit bf2eb55b57
12 changed files with 492 additions and 0 deletions

View File

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