From 0197bf16e1c842ab793399caf5e783d5503cd763 Mon Sep 17 00:00:00 2001 From: Oleg Mitsura Date: Fri, 3 May 2019 15:03:55 -0400 Subject: Default value for nodePort for blueprints processor Split the services into two services (GRPC does not need a NodePort) Issue-ID: SDNC-745 Change-Id: I87acd802e4f6d98412aa76c79009a79ddc69bfd8 Signed-off-by: Oleg Mitsura Signed-off-by: prathamesh morde --- kubernetes/cds/charts/cds-blueprints-processor/values.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'kubernetes/cds/charts/cds-blueprints-processor/values.yaml') diff --git a/kubernetes/cds/charts/cds-blueprints-processor/values.yaml b/kubernetes/cds/charts/cds-blueprints-processor/values.yaml index 2d96021046..6b88f841f4 100755 --- a/kubernetes/cds/charts/cds-blueprints-processor/values.yaml +++ b/kubernetes/cds/charts/cds-blueprints-processor/values.yaml @@ -20,7 +20,7 @@ global: # Change to an unused port prefix range to prevent port conflicts # with other instances running within the same k8s cluster - nodePortPrefix: 302 + nodePortPrefixExt: 304 # image repositories repository: nexus3.onap.org:10001 @@ -70,12 +70,14 @@ readiness: periodSeconds: 10 service: - type: ClusterIP http: + type: NodePort portName: blueprints-processor-http internalPort: 8080 externalPort: 8080 + nodePort: 99 grpc: + type: ClusterIP portName: blueprints-processor-grpc internalPort: 9111 externalPort: 9111 -- cgit 1.2.3-korg