mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
15 lines
382 B
YAML
15 lines
382 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: "{{ include "it-tools.fullname" . }}-test-connection"
|
|
labels:
|
|
{{- include "it-tools.labels" . | nindent 4 }}
|
|
annotations:
|
|
"helm.sh/hook": test
|
|
spec:
|
|
containers:
|
|
- name: wget
|
|
image: busybox
|
|
command: ['wget']
|
|
args: ['{{ include "it-tools.fullname" . }}:{{ .Values.service.port }}']
|
|
restartPolicy: Never
|