-1
Environment :
- Single Cluster.
- Cluster Managed by Rancher.

We have a HA (High Availability) requirement where we want to deploy multiple replicas of Ingress, Egress as DaemonSet to handle heavy load.

I went through the istio documentation and site, to understand deployment models, but it doesnt achieve the usecase.

4

1 回答 1

0

我做了 istio operator 的安装方式,并使用了以下 Manifest 文件:

apiVersion: install.istio.io/v1alpha1
kind: IstioOperator
metadata:
  namespace: istio-system
  name: istio-operator-ha-config
spec:
  components:
    ingressGateways:
       - name: istio-ingressgateway
         enabled: true
         k8s:
           overlays:
            - apiVersion: apps/v1
              kind: Deployment
              name: istio-ingressgateway
              patches:
              - path: kind
                value: DaemonSet
    egressGateways:
       - name: istio-egressgateway
         enabled: true
         k8s:
           overlays:
            - apiVersion: apps/v1
              kind: Deployment
              name: istio-egressgateway
              patches:
              - path: kind
                value: DaemonSet

请参阅:https ://istio.io/latest/docs/setup/install/operator/

于 2021-10-06T10:08:18.037 回答