Skip to content
Snippets Groups Projects
test-connection.yaml 427 B
Newer Older
  • Learn to ignore specific revisions
  • Manish Singh's avatar
    Manish Singh committed
    apiVersion: v1
    kind: Pod
    metadata:
      name: "{{ include "ibm-notification-deploy.fullname" . }}-test-connection"
      labels:
        {{- include "ibm-notification-deploy.labels" . | nindent 4 }}
      annotations:
        "helm.sh/hook": test
    spec:
      containers:
        - name: wget
          image: busybox
          command: ['wget']
          args: ['{{ include "ibm-notification-deploy.fullname" . }}:{{ .Values.service.port }}']
      restartPolicy: Never