mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-26 13:42:40 +00:00
15 lines
386 B
YAML
15 lines
386 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: "{{ include "opengist.fullname" . }}-test-connection"
|
|
labels:
|
|
{{- include "opengist.labels" . | nindent 4 }}
|
|
annotations:
|
|
"helm.sh/hook": test
|
|
spec:
|
|
containers:
|
|
- name: wget
|
|
image: busybox
|
|
command: ['wget']
|
|
args: ['{{ include "opengist.fullname" . }}:{{ .Values.serviceHttp.port }}']
|
|
restartPolicy: Never
|