Questions tagged [azure-aks]
The azure-aks tag has no usage guidance.
7
questions
2
votes
0
answers
31
views
Switch ingress controller to new static IP with zero downtime?
My AKS app uses a standard ingress-nginx ingress controller with a static IP, installed via Helm chart:
myStaticIp=1.2.3.4
myNodeRg=MC_foobar_eastus
helm upgrade --install ingress-nginx ingress-nginx ...
1
vote
2
answers
427
views
IP Whitelisting in (AKS) Kubernetes / ingress-nginx
Hello anyone who reads this,
I'm looking for a way to restrict access to a publically exposed service (type LoadBalancer) at 234.234.234.234:1234 to a specific trusted IP at 123.123.123.123.
The way ...
0
votes
1
answer
269
views
Terraform Azure - Error deploying AKS NoRegisteredProviderFound
I am trying to deploy an AKS cluster using this terraform code.
resource "azurerm_kubernetes_cluster" "k8s" {
name = local.k8s.name
location = ...
0
votes
1
answer
64
views
Memory & CPU Utilization drastically different for AKS
I am planning to use Descheduler in my AKS deployment to balance memory consumption of AKS nodes. My current output of kubectl top nodes is:
NAME CPU(cores) CPU% ...
0
votes
0
answers
23
views
Setting up Prometheus on Azure Kubernetes Cluster
I am setting up Prometheus on a production aks cluster. The app deployment on this cluster is exposed using ngnix ingress behind a load balancer and a firewall device.
How do I access Prometheus ...
0
votes
0
answers
120
views
Pod of StatefulSet is terminated and stays in Status Completed
Introduction
I've an issue with a pod in a StatefulSet which is terminated, stays in the Completed state and is not restarted.
I will describe the situation in a concrete example, that will provide ...
0
votes
1
answer
102
views
How to change from AGIC Addon to AGIC via helm?
I had a AKS with AGIC addon enabled and I have to switch to AGIC as a helm chart (https://learn.microsoft.com/en-us/azure/application-gateway/ingress-controller-install-existing) in an attempt to ...