Questions tagged [azure-kubernetes-service]

Azure Kubernetes Service is Microsoft Azure's fully-managed Kubernetes service in the public cloud.

Azure Kubernetes Service is Microsoft Azure's fully-managed Kubernetes service. Originally developed as part of the now end-of-life, Azure Container Services as an option along-side Mesosphere and Docker Swarm, then spun out separately once Kubernetes achieved market dominance.

30 questions
3
votes
0 answers

Keeping Pods Balanced Across Nodes in AKS

We had a fun issue yesterday and today where after a restart of some nodes, we ended up with more or less every pod on one server. After some research, it seems like most of the solutions for this issue are either manual or rely on something…
3
votes
1 answer

how to specify the dependency in the deployment?

This is a design question. I am not sure this is the right place. We have multiple microservices deployed using a blue/green pattern in Azure DevOps pipelines. What I am trying to achieve is I want to deploy (trigger pipeline) services based on the…
3
votes
2 answers

How do I expire users credentials for Kubernetes in Azure?

I am looking for information on how to forcefully expire users credentials in Azure Kubernetes Service (AKS). The reason is to better understand Security models and protecting Kubernetes deployments from unauthorized access. Scenario: You are an…
2
votes
0 answers

How to configure ArgoCD access to the Azure Repos from a deployment pipeline?

Right now I have several ideas in theory, but they all have problems. My setup is: Azure DevOps Services Azure Cloud A powerful service principal connection with which I run the pipeline Idea #1 Pipeline deploys an AKS cluster, AAD Pod Identity…
2
votes
1 answer

Enable TLSv1 TLSv1.1 for specific Ingress with Nginx Ingress

I try to enable TLSv1 and TLSv1.1 for one specific ingress on a AKS cluster. By default, only TLSv1.2 is enabled. I don't want to apply this configuration on my all cluster, just on a specific webserver service. Regarding the documentation, I need…
benCat
  • 71
  • 1
  • 6
2
votes
1 answer

How do I delete a default AKS node pool when I get an error saying it's the "backend address pool of the basic load balancer"

I'm attempting to replace a node pool in Azure Kubernetes Service with a new pool (that has a larger VM size). The current pool was deployed using an ARM template that uses version 2019-06-01 of the resource manager API. As per the Microsoft…
Nick Graham
  • 121
  • 4
2
votes
1 answer

Nginx ingress controller redirects the url to /login

I am trying to access a url example.com/service/test1 but it redircts me to example.com/login. Below is my YAMl file: apiVersion: extensions/v1beta1 kind: Ingress metadata: name: test-ing namespace: test annotations: …
2
votes
4 answers

Why will my container run in Docker, but will not run in Kubernetes?

Background I have a container that I have defined with an CMD and an ENTRYPOINT in Docker. When I run the following command my container runs with no issues whatsoever. docker run --rm -ti custom-container:latest Here is the definition for my…
1
vote
3 answers

nodes in a kubernetes cluster in azure unable to communicate with one another

I'll start off by saying I'm not really an infrastructure person, but am being required to maintain it until we hire someone more suited to it, so apologies if I have any terminology wrong. We have a kubernetes cluster (AKS)in azure. Currently we…
1
vote
2 answers

az aks browse doesn't open browser automatically on WSL and only showing JSON instead of the dashboard

az aks browse works fine on my Mac Mini, but I'm trying to work with it in WSL2 Ubuntu 18.04 with Azure CLI on a Windows 10 machine. $ az version This command is in preview. It may be changed/removed in a future release. { …
cheslijones
  • 155
  • 1
  • 9
1
vote
1 answer

Can't get either Postgres permissions or PVC working in AKS

These are pretty much the steps I have followed in order. Basically what is outlined in the documentation: https://docs.microsoft.com/en-us/azure/aks/azure-files-dynamic-pv azure-storage-claim.yaml kind: StorageClass apiVersion:…
1
vote
1 answer

Error while using AzureFile storage with CockroachDB

I'm getting an error trying to run CockroachDB (v19.2.1) on AKS. I'm able to spin up cluster using the default storage class. However, when I attempt to specify AzureFile storage, I get errors. Storage class: kind: StorageClass apiVersion:…
RQDQ
  • 121
  • 3
0
votes
2 answers

Ingress or LoadBalancer on AKS

I'm wondering whether to use an Ingress or LoadBalancer to expose services on Azure AKS. I have successfully used both, but I cannot really choose. On one side, an Ingress allows us to have a single public IP address, but on the other end it…
Arnaud Weil
  • 103
  • 4
0
votes
1 answer

ArgoCD: "the server is currently unable to handle the request"

Summary Quite suddenly, last week (after months without any failure), our ArgoCD deployment in our AKS cluster broke. Specifically: all ArgoCD applications got into the "Unknown" state, unable to compute any diffs against the cluster (error messages…
thiagowfx
  • 145
  • 1
  • 6
0
votes
0 answers

Kubernetes: Question on spawning pods based on message queue

Kubernetes noob here and looking for some advise on this specific design. We are implementing a post processing service that will be deployed on the cluster. The service should only spawn workers/Pods when there is a message on the queue to be…
1
2