Add enodebd service helm chart

Change-Id: I95a32b40bc775d926b3d8efd92b452ca97356bca
diff --git a/apps/enodebd/templates/tests/test-connection.yaml b/apps/enodebd/templates/tests/test-connection.yaml
new file mode 100644
index 0000000..090bf9d
--- /dev/null
+++ b/apps/enodebd/templates/tests/test-connection.yaml
@@ -0,0 +1,21 @@
+{{/*
+# Copyright 2022-present Open Networking Foundation
+
+# SPDX-License-Identifier: Apache-2.0
+*/}}
+
+apiVersion: v1
+kind: Pod
+metadata:
+  name: "{{ include "aether-enodebd.fullname" . }}-test-connection"
+  labels:
+    {{- include "aether-enodebd.labels" . | nindent 4 }}
+  annotations:
+    "helm.sh/hook": test
+spec:
+  containers:
+    - name: wget
+      image: busybox
+      command: ['wget']
+      args: ['{{ include "aether-enodebd.fullname" . }}:{{ .Values.service.port }}']
+  restartPolicy: Never