From 745a5751080706cbc89c36826a627fd30c5eaa8e Mon Sep 17 00:00:00 2001 From: EC2 Default User Date: Thu, 18 Jan 2018 03:31:47 +0000 Subject: [PATCH] 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 --- kubernetes/cli/templates/all-service.yaml | 10 +++++++--- kubernetes/cli/templates/cli-deployment.yaml | 3 ++- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/kubernetes/cli/templates/all-service.yaml b/kubernetes/cli/templates/all-service.yaml index e848bfdc38..24e19792e1 100644 --- a/kubernetes/cli/templates/all-service.yaml +++ b/kubernetes/cli/templates/all-service.yaml @@ -8,11 +8,15 @@ metadata: 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 }} diff --git a/kubernetes/cli/templates/cli-deployment.yaml b/kubernetes/cli/templates/cli-deployment.yaml index 3a702b9016..128c28a7f1 100644 --- a/kubernetes/cli/templates/cli-deployment.yaml +++ b/kubernetes/cli/templates/cli-deployment.yaml @@ -25,6 +25,7 @@ spec: value: daemon ports: - containerPort: 80 + - containerPort: 8080 name: cli readinessProbe: tcpSocket: @@ -33,4 +34,4 @@ spec: periodSeconds: 10 imagePullSecrets: - name: "{{ .Values.nsPrefix }}-docker-registry-key" -#{{ end }} \ No newline at end of file +#{{ end }} -- 2.16.6