Hamid
Hamid
As iverberk mentioned, this can be achieved using Gatekeeper mutation feature. It automatically injects `tolerations` and `nodeaffinity` to pods at the deployment time. A great documentation with ready to use...
I had the same issue and changing the following fixed my issue. ``` nginx.ingress.kubernetes.io/auth-url: "https://$host/oauth2/auth" ``` to ``` nginx.ingress.kubernetes.io/auth-url: "http://oauth2-proxy.kubernetes-dashboard.svc.cluster.local:4180/oauth2/auth" ``` Obviously, replace `kubernetes-dashboard` with the namespace where the oauth2-proxy...
This is not ideal, but we ended up generating a `cluster-variables` config map (values populated from the cluster-bootstrapper script) and installed it with the Argo helm chart (`extraObjects`). This custom...
> Hi @akessner , It is defined in the helm value file to override here https://github.com/argoproj/argo-helm/blob/main/charts/argo-cd/values.yaml#L1849 If you don't deploy ArgoCD via helm, you can add (or patch) that line...
We faced a similar issue, which turned out to be a security group blocking DNS packets from reaching the CoreDNS running on standard EC2 instances in the cluster. To diagnose...
We're encountering a similar issue where a subnet advertised via BGP (used as a secondary Cilium IP pool) requires internet access through an external firewall that performs sNAT. While this...
> > Are there any known workarounds to achieve this behavior in the meantime? Also, is there an estimated timeline for when this PR might be merged or released? >...