Files
common/starter/templates/tests/test-connection.yaml
Konstantin Grachev 6342d7be31
All checks were successful
continuous-integration/drone/push Build is passing
cs: fix
2023-03-02 23:44:38 +03:00

16 lines
380 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: "{{ include "common.fullname" . }}-test-connection"
labels:
{{- include "common.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test-success
spec:
containers:
- name: wget
image: busybox
command: [ 'wget' ]
args: [ '{{ include "common.fullname" . }}:{{ .Values.service.port }}' ]
restartPolicy: Never