diff options
author | Yury Novitsky <Yury.Novitsky@Amdocs.com> | 2017-09-05 12:31:12 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-05 12:31:12 +0000 |
commit | 7234ff7880279771bbfb1e4db85bfced4faec7b5 (patch) | |
tree | ba5fd683d8bcb7272fe7c9b5e10595621084a276 /kubernetes/policy/templates/all-services.yaml | |
parent | 2ba543f3568fb58f53f4d0f646ff4a2c8519d7d4 (diff) | |
parent | 78eff21978e9252c1128ff2f4820d43a08b2b0a7 (diff) |
Merge "NodePort Helm Parametrization"
Diffstat (limited to 'kubernetes/policy/templates/all-services.yaml')
-rw-r--r-- | kubernetes/policy/templates/all-services.yaml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kubernetes/policy/templates/all-services.yaml b/kubernetes/policy/templates/all-services.yaml index eb524edfc4..cd01b54ee8 100644 --- a/kubernetes/policy/templates/all-services.yaml +++ b/kubernetes/policy/templates/all-services.yaml @@ -39,7 +39,7 @@ spec: ports: - name: "drools-port" port: 6969 - nodePort: 30217 + nodePort: {{ .Values.nodePortPrefix }}17 selector: app: drools type: NodePort @@ -55,10 +55,10 @@ spec: ports: - name: 8443-port port: 8443 - nodePort: 30219 + nodePort: {{ .Values.nodePortPrefix }}19 - name: 9091-port port: 9091 - nodePort: 30218 + nodePort: {{ .Values.nodePortPrefix }}18 selector: app: pap type: NodePort @@ -94,7 +94,7 @@ spec: ports: - name: 8081-port port: 8081 - nodePort: 30220 + nodePort: {{ .Values.nodePortPrefix }}20 selector: app: pdp type: NodePort @@ -110,7 +110,7 @@ spec: ports: - name: tcp-31032-8480-bm91k port: 8480 - nodePort: 30221 + nodePort: {{ .Values.nodePortPrefix }}21 selector: app: pypdp type: NodePort @@ -126,7 +126,7 @@ spec: ports: - name: 9989-port port: 9989 - nodePort: 30216 + nodePort: {{ .Values.nodePortPrefix }}16 selector: app: brmsgw type: NodePort |