-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
High availability deployment for istio #399
Comments
Thank you for reporting us your feedback! The internal ticket has been created: https://warthogs.atlassian.net/browse/KF-5502.
|
The above Istio docs describe a combination of situations (single/multi cluster and single/multi networks). With an initial look I can't understand though how they would suggest we configure for each case. I also see at some point that they describe running Istio's Control Plane in a separate cluster, but this would need a bit of investigation. |
We'll try to tackle this in steps, as discussed with @ca-scribner The first one will be to ensure that the IngressGateway Pods will have HA. This will ensure that if a pod that handle the The first approach we discussed was to
With the above we can increase the number of replicas and ensure that the Pods will not be getting scheduled in the same nodes. (The extreme of this would be to convert the Deployment to a DaemonSet, which would create a Pod for every node) I tried configuring the Istio IngressGateway deployment like this (in an upstream KF) and indeed it worked as expected: spec:
affinity:
nodeAffinity: {}
podAntiAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: app
operator: In
values:
- istio-ingressgateway In a 2-node cluster, when I set the replicas to 2 indeed the pods got scheduled in different nodes Then when increasing the replicas to 3, it showed the expected error
|
Bug Description
Is there a way we can deploy Istio in a high availability setup for a single cluster?
Given just one kubeflow cluster, does it make sense to have istio be a daemon set as proposed by @kimwnasptd ?
I went through [0] and their model of High-Availability usually refers to multiple clusters using Istio and having multiple Istio control planes so that failure of a single control plane mesh can be tolerated for example.
However [0] does not really mention anything about availability in the context of a single cluster only (which will contain a single Istio control plane).
[0] https://istio.io/latest/docs/ops/deployment/deployment-models/
To Reproduce
N/A
Environment
N/A
Relevant Log Output
Additional Context
N/A
The text was updated successfully, but these errors were encountered: