mirror of
https://gitlab.com/oecis/charts.git
synced 2024-11-19 13:19:03 +00:00
16 lines
376 B
YAML
16 lines
376 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: "{{ include "mirage.fullname" . }}-test-connection"
|
||
|
labels:
|
||
|
{{- include "mirage.labels" . | nindent 4 }}
|
||
|
annotations:
|
||
|
"helm.sh/hook": test
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: wget
|
||
|
image: busybox
|
||
|
command: ['wget']
|
||
|
args: ['{{ include "mirage.fullname" . }}:{{ .Values.service.port }}']
|
||
|
restartPolicy: Never
|