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 | 44cc0bb17421a45ada3d1210ccd313789c041702 (patch) | |
tree | 4f58d62e338953c8b01dfefdecf6b7fb16ff7ea8 /templates | |
parent | 4fba1136235ccc834b1ac53934cb4b29cd5a68fe (diff) | |
parent | a85a58aa336f713e72858e868c1cbacab51afb3d (diff) |
Merge "NodePort Helm Parametrization"
Diffstat (limited to 'templates')
-rw-r--r-- | templates/all-services.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/all-services.yaml b/templates/all-services.yaml index 6e40844..63b9b00 100644 --- a/templates/all-services.yaml +++ b/templates/all-services.yaml @@ -154,11 +154,11 @@ spec: - name: "aai-service-port-8443" port: 8443 targetPort: 8443 - nodePort: 30233 + nodePort: {{ .Values.nodePortPrefix }}33 - name: "aai-service-port-8080" port: 8080 targetPort: 8080 - nodePort: 30232 + nodePort: {{ .Values.nodePortPrefix }}32 type: NodePort selector: app: aai-service @@ -174,10 +174,10 @@ spec: ports: - name: "model-loader-service-port-8443" port: 8443 - nodePort: 30229 + nodePort: {{ .Values.nodePortPrefix }}29 - name: "model-loader-service-port-8080" port: 8080 - nodePort: 30210 + nodePort: {{ .Values.nodePortPrefix }}10 type: NodePort selector: app: model-loader-service |