Kubernetes Architecture

Kubernetes Architecture   Github link to Project

Setup PATH of home and app locations

https://www.youtube.com/watch?v=pRHIw-WAZsg&list=PLmSlOWkfkugmXU1WVTu_fmrOwjRAbbWvL&index=19 Time: 15:25

Minikube on an Apple M1 chip without Docker Desktop

https://everythingdevops.dev/how-to-run-minikube-on-apple-m1-chip-without-docker-desktop/

Kind…

Installation  brew install kind Creating a Cluster kind create cluster Deleting a Cluster kind delete cluster Multinode Cluster # three node (two workers) cluster config kind: Cluster apiVersion: kind.x-k8s.io/v1alpha4 nodes: - role: control-plane - role: worker -...