Questions tagged [azure-aks]

Azure Kubernetes Service(AKS) is a way to launch and manage Kubernetes within the Azure cloud. Use with the [azure] tag

Azure Kubernetes Service (AKS) manages your hosted Kubernetes environment, making it quick and easy to deploy and manage containerized applications without container orchestration expertise. It also eliminates the burden of ongoing operations and maintenance by provisioning, upgrading, and scaling resources on demand, without taking your applications offline.

https://learn.microsoft.com/en-us/azure/aks/

3395 questions
15
votes
2 answers

How to add an Azure AKS Kubernetes Cluster self-signed CA to GitLab CI/CD Kubernetes integration?

I'm trying to add my Azure AKS Kubernetes cluster to my GitLab CI/CD Kubernetes integration. I can execute kubectl commands on the cluster from my pc, after I ran this command: az aks get-credentials --resource-group --name…
lmcarreiro
  • 5,312
  • 7
  • 36
  • 63
15
votes
1 answer

What is hcp-tunnelfront?

I have just installed my kubernetes cluster on azure using AKS. I have not installed anything and I noticed that the 'tunnelfront' pod was running: I have tried to find out what this pod is for and why it is running on my cluster, cannot find any…
tensai
  • 1,628
  • 3
  • 17
  • 22
14
votes
3 answers

How to kubernetes "kubectl apply" does not update existing deployments

I have a .NET-core web application. This is deployed to an Azure Container Registry. I deploy this to my Azure Kubernetes Service using kubectl apply -f testdeployment.yaml with the yaml-file below apiVersion: apps/v1 kind:…
Cowborg
  • 2,645
  • 3
  • 34
  • 51
14
votes
4 answers

How can I find the service principal secret of my AKS cluster?

Okay, so I messed up, I accidentally ran az ad sp reset-credentials against the Service Principal that our AKS cluster runs under. And now we are getting errors like: Error creating load balancer (will retry): error getting LB for service…
14
votes
4 answers

'Unable to connect Net/http: TLS handshake timeout' — Why can't Kubectl connect to Azure Kubernetes server? (AKS)

My question (to MS and anyone else) is: Why is this issue occurring and what work around can be implemented by the users / customers themselves as opposed to by Microsoft Support? There have obviously been 'a few' other question about this…
Necevil
  • 2,802
  • 5
  • 25
  • 42
13
votes
3 answers

How to work a job queue with kubernetes with scaling

I need a scalable queue handling based on docker/python worker. My thought went towards kubernetes. However, I am unsure about the best controller/service. Based on azure functions I get incoming http traffic adding simple messages to a storage…
Tom Seidel
  • 131
  • 1
  • 1
  • 4
12
votes
1 answer

Kubernetes cert-manager not updating certificates after issuer change

I am using cert-manager 0.5.2 to manage Let's Encrypt certificates on our Kubernetes cluster. I was using the Let's Encrypt staging environment, but have now moved to use their production certificates. The problem is that my applications aren't…
Dave New
  • 38,496
  • 59
  • 215
  • 394
12
votes
5 answers

Kubernetes Persistent Volume Mount not found

I am trying to create and mount a volume but getting stuck. This part creates the storage: apiVersion: v1 kind: PersistentVolumeClaim metadata: name: pvclaim2 spec: accessModes: - ReadWriteOnce storageClassName: managed-premium resources: …
Rutnet
  • 1,533
  • 5
  • 26
  • 48
11
votes
3 answers

cant create a second ingress controller using helm with custom class in Azure k8s cluster

I have created an ingress controller using Helm with default configuration default nginx-ingress-controller LoadBalancer 10.0.182.128 xx.xxx.xx.90 80:32485/TCP,443:31756/TCP 62m default nginx-ingress-default-backend …
ikenahim
  • 331
  • 1
  • 3
  • 15
11
votes
7 answers

Count of nodes which do not have a label?

How do I use kubectl to get K8S nodes which do not have any labels? Also , how do I fetch K8S pods which do not have any labels?
11
votes
3 answers

Custom domain and Azure Kubernetes with ingress controller AKS

I've followed this doc from microsoft Deploy an HTTPS ingress controller on Azure Kubernetes Service (AKS) and have successfully deployed a managed Kubernetes cluster (AKS) with nginx ingress controller. it works with https as expected. However,…
ossentoo
  • 1,675
  • 2
  • 20
  • 44
10
votes
2 answers

Changing the default k9s/Kubernetes context

I have 3 contexts set up in k9s (context1, context2, context3). I know I can change the context within k9s by typing :context but how do I change the default context that loads when I open k9s from context3 to context1?
Bhav
  • 1,957
  • 7
  • 33
  • 66
10
votes
3 answers

How to roll back a deployment to a previous revision automatically when deployment has crossed 'progressDeadlineSeconds'?

I'm working on deploying a docker image in kubernetes. The first time I deployed the container, I used: kubectl apply -f .yaml and the container was successfully deployed in a pod. Also, the deployment_file looks something like…
Swastik Gupta
  • 149
  • 1
  • 1
  • 12
10
votes
2 answers

SignalR connection via K8S Ingress

I'm trying to expose a SignalR hub hosted in a Kubernetes (Azure) pod. Basically, the authentication and the handshake steps work fine, but when I trigger some action, all clients connected via the k8s Ingress doesn't receive the message. Has…
Alvaro Inckot
  • 695
  • 9
  • 29
10
votes
3 answers

Can't connect from azure resource to Azure database for postgres server

I can't connect from azure resource (aks node) to Azure postgres using pgcli. I also tried directly from node and got the same error message: FATAL: Client from Azure Virtual Networks is not allowed to access the server. Please make sure your…
Amityo
  • 5,635
  • 4
  • 22
  • 29