'IAM that created eks I wonder how can I have system:master

I am a junior developer studying eks.

When you create eks, you can see that the IAM user used to create it is granted as system:master.

I can't find how system:master is specified

I can't see the contents of IAM in the generated aws-auth configmap of Kubernetes.

Can you find out which part to look for?

Started out of curiosity and still looking:(

please help i've been looking all day



Solution 1:[1]

I can't find how system:master is specified

system:masters is a logical group defined in kubernetes source. This is not something created by EKS or yourself.

see the contents of IAM in the generated aws-auth configmap

kubectl get configmap aws-auth --namespace kube-system --output yaml

Try this beginner guide.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1