GKE
- Create Cluster in GKE: Refer Here for the official docs
- GCLOUD CLI – Autopilot cluster
gcloud container clusters create-auto qt-cluster \
--location=us-central1
- GCLOUD CLI – Standard cluster
gcloud container clusters create qt-std-cluster --machine-type "e2-medium" --num-nodes 2 --region "us-central1" --disk-size 20
- Autoscaling kubernetes nodes: This is done by using cluster autoscaler Refer Here
- Create k8s pods or stateful sets by using existing storage classes in gke and create a new storage class and use it to mount volume
- Create a helm chart or kustomize to deploy Refer Here and Refer Here for the docker compose file.
