Monday, May 22 2023

Created: by Pradeep Gowda Updated: Nov 04, 2023 Tagged: kubernetes

Kubernetes

  • installed minikube
  • minikube config set driver docker
  • used the orbstack server to connect. (start orbstack before starting minikube)
  • minicube start
minikube status
minikube
type: Control Plane
host: Running
kubelet: Running
apiserver: Running
kubeconfig: Configured

Conepts: See Glossary

  • control plane
  • node “A node may be a virtual or physical machine, depending on the cluster. Each node is managed by the control plane and contains the services necessary to run Pods.”
    • services
    • components
      • kubelet
      • container runtime
      • kube-proxy
  • pod “is a group of one or more containers, with shared storage and network resources, and a specification for how to run the containers.” A Pod models an application-specific “logical host”: it contains one or more application containers which are relatively tightly coupled.
  • container
    • container images