Open zioproto opened 1 year ago
Action required from @Azure/aks-pm
Issue needing attention of @Azure/aks-leads
@shashankbarsin any ideas on this?
Action required from @Azure/aks-pm
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Funky :)
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
@justindavies Any updates on this?
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
Issue needing attention of @Azure/aks-leads
@zioproto Completed how?
@evgenymo I closed the issue as completed because my original problem with Istio Ambient is now actually solved: https://github.com/istio/istio/issues/41917
However, you are right, this issue is not specifically related to Istio Ambient and there is no solution yet.
Are you blocked by this issue as well for developing an Helm chart ? If who is following this issue would be so kind to comment which Helm chart they are working on, this would help to prioritise this problem with the product team.
Thank you
@zioproto
Thanks for the clarification, i managed to find a way to identify AKS via other means but i still find it strange that:
I need to extend an existing Helm chart, that needs to autodetect the target cluster is an AKS one. Example https://github.com/istio/istio/blob/fbb25467e9df6dc61fac0a3f6e43d9fac67909cc/manifests/charts/ztunnel/templates/daemonset.yaml#L117-L119
For GKE and EKS this is done using Helm Capabilities:
Because in GKE and EKS doing
kubectl version
returns aGitVersion
object that has a string suffix-eks
or-gke
In AKS the string is just the Kubernetes SemVer.
In the above example I have GitVersion:"v1.25.2"
In GKE the version would be like:
1.21.3-gke.210
in EKS the version would be like:v1.18.9-eks-d1db3c
Question:
How to detect the cluster is AKS from the Helm capabilities ? https://helm.sh/docs/chart_template_guide/builtin_objects/
One possible idea is to be consistent with the other Cloud Providers is to add to the
GitVersion
a-aks
suffixRelated issues
Related Stackoverflow questions