From 21b3a988dc31878c821c8a7979261afa59ca7cc0 Mon Sep 17 00:00:00 2001 From: icurfer Date: Wed, 4 Dec 2024 02:52:22 +0000 Subject: [PATCH] .. --- base/gateway.yaml | 14 +++++++++++++ base/kustomization.yaml | 7 +++++++ base/rollout.yaml | 35 +++++++++++++++++++++++++++++++++ base/service.yaml | 24 ++++++++++++++++++++++ base/virtualService.yaml | 22 +++++++++++++++++++++ overlays/dev/image-patch.yaml | 10 ++++++++++ overlays/dev/kustomization.yaml | 6 ++++++ 7 files changed, 118 insertions(+) create mode 100644 base/gateway.yaml create mode 100644 base/kustomization.yaml create mode 100644 base/rollout.yaml create mode 100644 base/service.yaml create mode 100644 base/virtualService.yaml create mode 100644 overlays/dev/image-patch.yaml create mode 100644 overlays/dev/kustomization.yaml diff --git a/base/gateway.yaml b/base/gateway.yaml new file mode 100644 index 0000000..e736e0d --- /dev/null +++ b/base/gateway.yaml @@ -0,0 +1,14 @@ +apiVersion: networking.istio.io/v1alpha3 +kind: Gateway +metadata: + name: rollouts-demo-gateway +spec: + selector: + istio: ingressgateway # use istio default controller + servers: + - port: + number: 80 + name: http + protocol: HTTP + hosts: + - "*.itstant.com" \ No newline at end of file diff --git a/base/kustomization.yaml b/base/kustomization.yaml new file mode 100644 index 0000000..959a454 --- /dev/null +++ b/base/kustomization.yaml @@ -0,0 +1,7 @@ +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +resources: + - gateway.yaml + - virtualService.yaml + - rollout.yaml + - service.yaml \ No newline at end of file diff --git a/base/rollout.yaml b/base/rollout.yaml new file mode 100644 index 0000000..c051892 --- /dev/null +++ b/base/rollout.yaml @@ -0,0 +1,35 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Rollout +metadata: + name: rollouts-demo +spec: + replicas: 1 + strategy: + canary: + canaryService: rollouts-demo-canary + stableService: rollouts-demo-stable + trafficRouting: + istio: + virtualServices: + - name: rollouts-demo-vsvc1 + routes: + - primary + steps: + - setWeight: 5 + - pause: {} + revisionHistoryLimit: 2 + selector: + matchLabels: + app: rollouts-demo + template: + metadata: + labels: + app: rollouts-demo + istio-injection: enabled + spec: + containers: + - name: rollouts-demo + image: harbor.inje-private.com/open/nginx:a + ports: + - name: http + containerPort: 80 \ No newline at end of file diff --git a/base/service.yaml b/base/service.yaml new file mode 100644 index 0000000..d97c642 --- /dev/null +++ b/base/service.yaml @@ -0,0 +1,24 @@ +apiVersion: v1 +kind: Service +metadata: + name: rollouts-demo-canary +spec: + ports: + - port: 80 + targetPort: http + name: http + selector: + app: rollouts-demo + +--- +apiVersion: v1 +kind: Service +metadata: + name: rollouts-demo-stable +spec: + ports: + - port: 80 + targetPort: http + name: http + selector: + app: rollouts-demo diff --git a/base/virtualService.yaml b/base/virtualService.yaml new file mode 100644 index 0000000..29f9baa --- /dev/null +++ b/base/virtualService.yaml @@ -0,0 +1,22 @@ +apiVersion: networking.istio.io/v1alpha3 +kind: VirtualService +metadata: + name: rollouts-demo-vsvc1 +spec: + gateways: + - rollouts-demo-gateway + hosts: + - a.itstant.com + http: + - name: primary + route: + - destination: + host: rollouts-demo-stable + port: + number: 80 + weight: 100 + - destination: + host: rollouts-demo-canary + port: + number: 80 + weight: 0 \ No newline at end of file diff --git a/overlays/dev/image-patch.yaml b/overlays/dev/image-patch.yaml new file mode 100644 index 0000000..403d0e2 --- /dev/null +++ b/overlays/dev/image-patch.yaml @@ -0,0 +1,10 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Rollout +metadata: + name: rollouts-demo +spec: + template: + spec: + containers: + - name: rollouts-demo + image: harbor.inje-private.com/open/nginx:a \ No newline at end of file diff --git a/overlays/dev/kustomization.yaml b/overlays/dev/kustomization.yaml new file mode 100644 index 0000000..11d815e --- /dev/null +++ b/overlays/dev/kustomization.yaml @@ -0,0 +1,6 @@ +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +resources: + - ../../base +patchesStrategicMerge: + - image-patch.yaml \ No newline at end of file