Exposed 8080 and 9090 ports in onap-cli
Exposed 8080 and 9090 ports in onap-cli kubernetes service to enable access CLI in webpage
Issue-ID: OOM-589
Change-Id: I41c30356ab06473da2ffe86096f98408ca37f69a
Signed-off-by: EC2 Default User <chenxiaobo99@hotmail.com>
diff --git a/kubernetes/cli/templates/all-service.yaml b/kubernetes/cli/templates/all-service.yaml
index e848bfd..24e1979 100644
--- a/kubernetes/cli/templates/all-service.yaml
+++ b/kubernetes/cli/templates/all-service.yaml
@@ -8,11 +8,15 @@
app: cli
spec:
ports:
- - name: 80-port
- port: 80
+ - name: 8080-port
+ port: 8080
targetPort: 80
nodePort: {{ .Values.nodePortPrefix }}60
+ - name: 9090-port
+ port: 9090
+ targetPort: 8080
+ nodePort: {{ .Values.nodePortPrefix }}61
type: NodePort
selector:
app: cli
-#{{ end }}
\ No newline at end of file
+#{{ end }}