Kubernetes Components Configurations And Folders Explained
Kubernetes config files & locations: `/etc/kubernetes/manifests`, `/var/lib/kubelet/config.yaml`, `/etc/systemd/system/kubelet.service.d/10-kubeadm.conf`, `.kube/` directory, `pki/` folder for certificates and keys.
1. Workflow of Kubernetes Operations: 1. kubectl Sends API Request: kubectl sends API requests to the kube-apiserver (usually through the IP address and port specified in the .kube/config or /etc/kubernetes/admin.conf file). 2. kube-apiserver Processes Requests: The kube-apiserver receives, authenticates, authorizes, and validates the request. The kube-apiserver may update resources or change states in the etcd database, which stores the cluster’s entire state. If the request involves creating or managing resources like Pods, Deployments, or Services, the kube-apiserver tr...