blob: 090bf9df5ce0f70ade04117dd4a55d0f3ccf783e [file] [log] [blame]
Wei-Yu Chen16d59142022-06-08 18:25:01 +08001{{/*
2# Copyright 2022-present Open Networking Foundation
3
4# SPDX-License-Identifier: Apache-2.0
5*/}}
6
7apiVersion: v1
8kind: Pod
9metadata:
10 name: "{{ include "aether-enodebd.fullname" . }}-test-connection"
11 labels:
12 {{- include "aether-enodebd.labels" . | nindent 4 }}
13 annotations:
14 "helm.sh/hook": test
15spec:
16 containers:
17 - name: wget
18 image: busybox
19 command: ['wget']
20 args: ['{{ include "aether-enodebd.fullname" . }}:{{ .Values.service.port }}']
21 restartPolicy: Never