20 lines
514 B
YAML
20 lines
514 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: "{{ template "wekan.fullname" . }}-test-http"
|
|
labels:
|
|
app: {{ template "wekan.name" . }}
|
|
chart: {{ template "wekan.chart" . }}
|
|
component: wekan
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
annotations:
|
|
"helm.sh/hook": test
|
|
spec:
|
|
containers:
|
|
- name: wget
|
|
image: busybox
|
|
command: ['wget', '-O', '/dev/stdout']
|
|
args: ['{{ template "wekan.fullname" . }}:{{ .Values.service.port }}']
|
|
restartPolicy: Never
|