mirror of
https://github.com/D4M13N-D3V/comissions-app-argocd.git
synced 2025-03-14 08:15:00 +00:00
16 lines
364 B
YAML
16 lines
364 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: "{{ include "ui.fullname" . }}-test-connection"
|
|
labels:
|
|
{{- include "ui.labels" . | nindent 4 }}
|
|
annotations:
|
|
"helm.sh/hook": test
|
|
spec:
|
|
containers:
|
|
- name: wget
|
|
image: busybox
|
|
command: ['wget']
|
|
args: ['{{ include "ui.fullname" . }}:{{ .Values.service.port }}']
|
|
restartPolicy: Never
|