diff options
Diffstat (limited to 'kubernetes/aai')
-rw-r--r-- | kubernetes/aai/templates/all-services.yaml | 68 | ||||
-rw-r--r-- | kubernetes/aai/values.yaml | 1 |
2 files changed, 35 insertions, 34 deletions
diff --git a/kubernetes/aai/templates/all-services.yaml b/kubernetes/aai/templates/all-services.yaml index ac709d997b..63b9b005b9 100644 --- a/kubernetes/aai/templates/all-services.yaml +++ b/kubernetes/aai/templates/all-services.yaml @@ -38,114 +38,114 @@ metadata: "serviceName": "aai-cloudInfrastructure", "version": "v1", "url": "/cloud-infrastructure", - "protocol": "REST" + "protocol": "REST", "port": "8443", - "enable_ssl":"True" + "enable_ssl":"True", "visualRange":"1" }, { "serviceName": "aai-cloudInfrastructure-deprecated", "version": "v1", "url": "/cloud-infrastructure", - "protocol": "REST" + "protocol": "REST", "port": "8443", - "enable_ssl":"True" - "visualRange":"1" + "enable_ssl":"True", + "visualRange":"1", "path":"/cloud-infrastructure" }, { "serviceName": "aai-business", "version": "v1", "url": "/business", - "protocol": "REST" + "protocol": "REST", "port": "8443", - "enable_ssl":"True" + "enable_ssl":"True", "visualRange":"1" }, { "serviceName": "aai-business-deprecated", "version": "v1", "url": "/business", - "protocol": "REST" + "protocol": "REST", "port": "8443", - "enable_ssl":"True" - "visualRange":"1" + "enable_ssl":"True", + "visualRange":"1", "path":"/business" }, { "serviceName": "aai-search", "version": "v1", "url": "/search", - "protocol": "REST" + "protocol": "REST", "port": "8443", - "enable_ssl":"True" + "enable_ssl":"True", "visualRange":"1" }, { "serviceName": "aai-search-deprecated", "version": "v1", "url": "/search", - "protocol": "REST" + "protocol": "REST", "port": "8443", - "enable_ssl":"True" - "visualRange":"1" + "enable_ssl":"True", + "visualRange":"1", "path":"/search" }, { "serviceName": "aai-actions", "version": "v1", "url": "/actions", - "protocol": "REST" + "protocol": "REST", "port": "8443", - "enable_ssl":"True" + "enable_ssl":"True", "visualRange":"1" }, { "serviceName": "aai-actions-deprecated", "version": "v1", "url": "/actions", - "protocol": "REST" + "protocol": "REST", "port": "8443", - "enable_ssl":"True" - "visualRange":"1" + "enable_ssl":"True", + "visualRange":"1", "path":"/actions" }, { "serviceName": "aai-service-design-and-creation", "version": "v1", "url": "/service-design-and-creation", - "protocol": "REST" + "protocol": "REST", "port": "8443", - "enable_ssl":"True" + "enable_ssl":"True", "visualRange":"1" }, { "serviceName": "aai-service-design-and-creation-deprecated", "version": "v1", "url": "/service-design-and-creation", - "protocol": "REST" + "protocol": "REST", "port": "8443", - "enable_ssl":"True" - "visualRange":"1" + "enable_ssl":"True", + "visualRange":"1", "path":"/service-design-and-creation" }, { "serviceName": "aai-network", "version": "v1", "url": "/network", - "protocol": "REST" + "protocol": "REST", "port": "8443", - "enable_ssl":"True" + "enable_ssl":"True", "visualRange":"1" }, { "serviceName": "aai-network-deprecated", "version": "v1", "url": "/network", - "protocol": "REST" + "protocol": "REST", "port": "8443", - "enable_ssl":"True" - "visualRange":"1" + "enable_ssl":"True", + "visualRange":"1", "path":"/network" } ]' @@ -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 diff --git a/kubernetes/aai/values.yaml b/kubernetes/aai/values.yaml index c0715382e6..290ffc5c21 100644 --- a/kubernetes/aai/values.yaml +++ b/kubernetes/aai/values.yaml @@ -1,5 +1,6 @@ nsPrefix: onap pullPolicy: Always +nodePortPrefix: 302 image: readiness: oomk8s/readiness-check:1.0.0 aaiProxy: aaionap/haproxy |