diff options
author | rui hu <hu.rui2@zte.com.cn> | 2017-09-02 06:40:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-02 06:40:48 +0000 |
commit | 79134e2bb47f3d53447ffe88f92dff80de524be4 (patch) | |
tree | 0bbd475f0e05f04a41fe04a21104b61ddc42bef2 /kubernetes/aai/templates | |
parent | e4fa91b5fc6f3cf77a0a7faf2abe5b472386c369 (diff) | |
parent | 14391b41d1cea04544e284f502cc4da2eef69d90 (diff) |
Merge changes I36641bbb,Ia8568265
* changes:
parameterize docker image
add service endpoint annotation for aai
Diffstat (limited to 'kubernetes/aai/templates')
-rw-r--r-- | kubernetes/aai/templates/all-services.yaml | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/kubernetes/aai/templates/all-services.yaml b/kubernetes/aai/templates/all-services.yaml index 93fbf1999c..ac709d997b 100644 --- a/kubernetes/aai/templates/all-services.yaml +++ b/kubernetes/aai/templates/all-services.yaml @@ -32,6 +32,123 @@ metadata: namespace: "{{ .Values.nsPrefix }}-aai" labels: app: aai-service + annotations: + msb.onap.org/service-info: '[ + { + "serviceName": "aai-cloudInfrastructure", + "version": "v1", + "url": "/cloud-infrastructure", + "protocol": "REST" + "port": "8443", + "enable_ssl":"True" + "visualRange":"1" + }, + { + "serviceName": "aai-cloudInfrastructure-deprecated", + "version": "v1", + "url": "/cloud-infrastructure", + "protocol": "REST" + "port": "8443", + "enable_ssl":"True" + "visualRange":"1" + "path":"/cloud-infrastructure" + }, + { + "serviceName": "aai-business", + "version": "v1", + "url": "/business", + "protocol": "REST" + "port": "8443", + "enable_ssl":"True" + "visualRange":"1" + }, + { + "serviceName": "aai-business-deprecated", + "version": "v1", + "url": "/business", + "protocol": "REST" + "port": "8443", + "enable_ssl":"True" + "visualRange":"1" + "path":"/business" + }, + { + "serviceName": "aai-search", + "version": "v1", + "url": "/search", + "protocol": "REST" + "port": "8443", + "enable_ssl":"True" + "visualRange":"1" + }, + { + "serviceName": "aai-search-deprecated", + "version": "v1", + "url": "/search", + "protocol": "REST" + "port": "8443", + "enable_ssl":"True" + "visualRange":"1" + "path":"/search" + }, + { + "serviceName": "aai-actions", + "version": "v1", + "url": "/actions", + "protocol": "REST" + "port": "8443", + "enable_ssl":"True" + "visualRange":"1" + }, + { + "serviceName": "aai-actions-deprecated", + "version": "v1", + "url": "/actions", + "protocol": "REST" + "port": "8443", + "enable_ssl":"True" + "visualRange":"1" + "path":"/actions" + }, + { + "serviceName": "aai-service-design-and-creation", + "version": "v1", + "url": "/service-design-and-creation", + "protocol": "REST" + "port": "8443", + "enable_ssl":"True" + "visualRange":"1" + }, + { + "serviceName": "aai-service-design-and-creation-deprecated", + "version": "v1", + "url": "/service-design-and-creation", + "protocol": "REST" + "port": "8443", + "enable_ssl":"True" + "visualRange":"1" + "path":"/service-design-and-creation" + }, + { + "serviceName": "aai-network", + "version": "v1", + "url": "/network", + "protocol": "REST" + "port": "8443", + "enable_ssl":"True" + "visualRange":"1" + }, + { + "serviceName": "aai-network-deprecated", + "version": "v1", + "url": "/network", + "protocol": "REST" + "port": "8443", + "enable_ssl":"True" + "visualRange":"1" + "path":"/network" + } + ]' spec: ports: - name: "aai-service-port-8443" |