370cd10096
* fix wiki helm * update readme * include service account as a stub * use lightweight healthz for readiness and health endpoint * remove if block for setting DB_TYPE, only postgres is supported in this chart for now
16 lines
378 B
YAML
16 lines
378 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: "{{ include "wiki.fullname" . }}-test-connection"
|
|
labels:
|
|
{{- include "wiki.labels" . | nindent 4 }}
|
|
annotations:
|
|
"helm.sh/hook": test-success
|
|
spec:
|
|
containers:
|
|
- name: wget
|
|
image: busybox
|
|
command: ['wget']
|
|
args: ['{{ include "wiki.fullname" . }}:{{ .Values.service.port }}']
|
|
restartPolicy: Never
|