and_apo
and_apo

Reputation: 1297

How to apply change on API Server on Azure AKS

Based on this, what we want to achieve involves editing a component on the master node of K8 cluster - /etc/kubernetes/manifests/kube-apiserver.yaml

How can we achieve this in a managed version of K8 like AKS, where we cannot SSH into the nodes?

I know of kube-apiserver command but that is a Docker container running in the Master node - not accessible with AKS. Is there a kubectl command or anything else I can use specifically for editing properties of the API Server?

Upvotes: 0

Views: 1853

Answers (1)

4c74356b41
4c74356b41

Reputation: 72191

this is not possible in AKS, its a managed service, you dont have access to the API Server settings and cannot change those.

You can alter some of those when you create AKS cluster, that would be the only time you can change default behaviour.

Upvotes: 3

Related Questions