What questions are to be made about the kube-apiserver in terms of security?
How is Authentication in kube-apiserver dealt with?
What Authorization mechanisms exists for kube-apiserver?
Where is TLS encryption used?
How is user (admins, devs) access managed in Kubernetes?
What Auth-mechanisms can be configured for the kube-apiserver?
How does static password file authentication work? (Basic)
How can you authenticate yourself in a curl command?
with ‘-u “user1:password123”’
How does Authentication with a static token file work?
How can you pass a token-file to the kube-apiserver?
–token-auth-file=user-token-details.csv
How do you authenticate while communicating with the kube-apiserver
in curl command:
‘–header “Authorization: Bearer < token>”’