# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: MIT-0 apiVersion: v1 kind: Pod metadata: name: "{{ include "devopsguru_eks_test.fullname" . }}-test-connection" labels: {{- include "devopsguru_eks_test.labels" . | nindent 4 }} annotations: "helm.sh/hook": test spec: containers: - name: wget image: busybox command: ['wget'] args: ['{{ include "devopsguru_eks_test.fullname" . }}:{{ .Values.service.port }}'] restartPolicy: Never