Skip to content
Snippets Groups Projects
test-connection.yaml 397 B
Newer Older
Louis's avatar
Louis committed
apiVersion: v1
kind: Pod
metadata:
  name: "{{ include "woodpecker-ci.fullname" . }}-test-connection"
  labels:
    {{- include "woodpecker-ci.labels" . | nindent 4 }}
  annotations:
    "helm.sh/hook": test
spec:
  containers:
    - name: wget
      image: busybox
      command: ['wget']
      args: ['{{ include "woodpecker-ci.fullname" . }}:{{ .Values.service.port }}']
  restartPolicy: Never