In what groups are the Kubernetes apis grouped?
What does the /api (core) group encompass?
Covers all core functionality. Like
- namespaces
- pods
- nodes
- PVs
- PVCs
- configmaps
What does the /apis (named) group encompass?
What is special about the resources listed in the /api and /apis group?
How can you ask all api groups from the kubeapi server?
curl http://localhost:6443 -k
–key admin.key
–cert admin.crt
–cacert ca.crt
What does the ‘kubectl proxy’ command do?
Starts a proxy service locally on port 8001, using credentials and certificates from kubeconfig file for access
So that you don’t have to specify them in the curl http://localhost:8001 -k command