Added CLAMP containers to ONAP Kubernetes
Added the initial deployment yamls for CLAMP and updated one-click
Issue-ID: OOM-12
Change-Id: I48c842d77bf95ad53dcff9ab28edf542b1cb4bf5
Signed-off-by: Dusan Rozman <dusan.rozman@amdocs.com>
diff --git a/kubernetes/clamp/templates/all-services.yaml b/kubernetes/clamp/templates/all-services.yaml
new file mode 100644
index 0000000..20ec584
--- /dev/null
+++ b/kubernetes/clamp/templates/all-services.yaml
@@ -0,0 +1,28 @@
+apiVersion: v1
+kind: Service
+metadata:
+ name: clamp-mariadb
+ namespace: "{{ .Values.nsPrefix }}-clamp"
+ labels:
+ app: clamp-mariadb
+spec:
+ ports:
+ - name: clamp-mariadb
+ port: 3306
+ selector:
+ app: clamp-mariadb
+ clusterIP: None
+---
+apiVersion: v1
+kind: Service
+metadata:
+ name: clamp
+ namespace: "{{ .Values.nsPrefix }}-clamp"
+spec:
+ ports:
+ - name: clamp
+ port: 8080
+ nodePort: {{ .Values.nodePortPrefix }}95
+ selector:
+ app: clamp
+ type: NodePort