tanzu-factory / tap-jumpstart

MIT License
4 stars 0 forks source link

GKE deployment #15

Closed alinahid477 closed 1 year ago

alinahid477 commented 1 year ago

The deployment is failing due to LoadBalancer is not auto provisioned.

alinahid477 commented 1 year ago

GKE is working

GKE needs to be created with appropriate CNI

gcloud beta container \ --project "" clusters create "gke-8120-tap-jumpstart" \ --zone "australia-southeast1-a" \ --no-enable-basic-auth \ --cluster-version "1.27.3-gke.100" \ --release-channel "regular" \ --machine-type "e2-custom-8-8192" \ --image-type "COS_CONTAINERD" \ --disk-type "pd-balanced" \ --disk-size "100" \ --metadata disable-legacy-endpoints=true --scopes "https://www.googleapis.com/auth/devstorage.read_only","https://www.googleapis.com/auth/logging.write","https://www.googleapis.com/auth/monitoring","https://www.googleapis.com/auth/servicecontrol","https://www.googleapis.com/auth/service.management.readonly","https://www.googleapis.com/auth/trace.append" \ --num-nodes "3" \ --logging=SYSTEM,WORKLOAD \ --monitoring=SYSTEM \ --enable-ip-alias \ --network "projects/pa-dkari/global/networks/default" \ --subnetwork "projects/pa-dkari/regions/australia-southeast1/subnetworks/default" \ --no-enable-intra-node-visibility \ --default-max-pods-per-node "110" \ --security-posture=standard \ --workload-vulnerability-scanning=disabled \ --enable-network-policy \ --no-enable-master-authorized-networks \ --addons HorizontalPodAutoscaling,HttpLoadBalancing,GcePersistentDiskCsiDriver \ --enable-autoupgrade \ --enable-autorepair \ --max-surge-upgrade 1 \ --max-unavailable-upgrade 0 \ --binauthz-evaluation-mode=DISABLED \ --enable-managed-prometheus --enable-shielded-nodes \ --node-locations "australia-southeast1-a"