Files
planka-zh/charts/planka/templates/tests/test-connection.yaml
Christopher Greaves 932d8225ed feat: Add official Helm Chart (#442)
Closes #192
2023-05-25 20:23:11 +05:00

16 lines
376 B
YAML

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