diff options
author | HuabingZhao <zhao.huabing@zte.com.cn> | 2017-09-15 21:02:46 -0400 |
---|---|---|
committer | HuabingZhao <zhao.huabing@zte.com.cn> | 2017-09-15 21:09:19 -0400 |
commit | ead916e6bf28122143dbceb85e016ff085a92f0e (patch) | |
tree | 4af09ad66f08ed00faa7b50db820728f5af7d33a /kubernetes | |
parent | 19f78a77d385dd130947e8642581d78a93bebe82 (diff) |
Fix annotation issue for policy
The json format is not correct due to lacking of a comma.
Issue-Id: OOM-222
Change-Id: I5af614d02e8cddd96efa80d09d72dcf264756ae1
Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
Diffstat (limited to 'kubernetes')
-rw-r--r-- | kubernetes/policy/templates/all-services.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/policy/templates/all-services.yaml b/kubernetes/policy/templates/all-services.yaml index 0d9a68ac25..04c984df54 100644 --- a/kubernetes/policy/templates/all-services.yaml +++ b/kubernetes/policy/templates/all-services.yaml @@ -76,7 +76,7 @@ metadata: "serviceName": "policy-pdp", "version": "v1", "url": "/pdp", - "protocol": "REST" + "protocol": "REST", "port": "8081", "visualRange":"1" }, @@ -84,7 +84,7 @@ metadata: "serviceName": "policy-pdp-deprecated", "version": "v1", "url": "/pdp", - "protocol": "REST" + "protocol": "REST", "port": "8081", "visualRange":"1", "path":"/pdp" |