22 lines
440 B
YAML
22 lines
440 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
|
|
metadata:
|
|
name: "{{ include "semaphoreui.fullname" . }}-test-connection"
|
|
labels:
|
|
{{- include "semaphoreui.labels" . | nindent 4 }}
|
|
annotations:
|
|
helm.sh/hook: "test-success"
|
|
|
|
spec:
|
|
restartPolicy: Never
|
|
|
|
containers:
|
|
- name: wget
|
|
image: busybox
|
|
command:
|
|
- wget
|
|
args:
|
|
- --spider
|
|
- http://{{ include "semaphoreui.fullname" . }}:{{ .Values.service.port }}
|