Bug fix in SDC after istio to 1.0.0 21/61321/2
authorAce Lee <liyin11@huawei.com>
Fri, 24 Aug 2018 07:56:39 +0000 (07:56 +0000)
committerAce Lee <liyin11@huawei.com>
Wed, 29 Aug 2018 09:16:16 +0000 (09:16 +0000)
JIRA: CLOVER-84

There will be some Bug in SDC after we upgrade the Istio to 1.0.0
Istio 1.0 have some concept, for example : virtualservice gateway.
So we change the yaml file using the 1.0.0 concepts.
Add mirror function

Change-Id: Id138cfec2c7d94b44eb508a056c91e193ac1b08b
Signed-off-by: Ace Lee <liyin11@huawei.com>
samples/scenarios/service_delivery_controller_opnfv.yaml

index 9fee92f..ceba36f 100644 (file)
@@ -344,17 +344,38 @@ spec:
   selector:
     app: proxy-access-control
 ---
-apiVersion: extensions/v1beta1
-kind: Ingress
+apiVersion: networking.istio.io/v1alpha3
+kind: Gateway
+metadata:
+  name: sdc-gateway
+spec:
+  selector:
+    istio: ingressgateway # use istio default controller
+  servers:
+  - port:
+      number: 80
+      name: http
+      protocol: HTTP
+    hosts:
+    - "*"
+---
+apiVersion: networking.istio.io/v1alpha3
+kind: VirtualService
 metadata:
-  name: proxy-gateway
-  annotations:
-    kubernetes.io/ingress.class: "istio"
+  name: sdcsample
 spec:
-  rules:
-  - http:
-      paths:
-      - path:
-        backend:
-          serviceName: proxy-access-control
-          servicePort: 9180
+  hosts:
+  - "*"
+  gateways:
+  - sdc-gateway
+  http:
+  - match:
+    - uri:
+        prefix: /
+    route:
+    - destination:
+        host: proxy-access-control
+        port:
+          number: 9180
+    mirror:
+      host: snort-ids