From ef90418e92cbc43ef460b16878b090f1ee60b06c Mon Sep 17 00:00:00 2001 From: Maciej Zimnoch Date: Tue, 5 Jan 2021 16:16:10 +0100 Subject: [PATCH] docs: bump instance type in GKE operator-pool n1-standard-4 is too small to handle both monitoring and operator. This also sync what we have in gke.sh --- docs/source/gke.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/gke.md b/docs/source/gke.md index ed7fd5fa93..e550e77c99 100644 --- a/docs/source/gke.md +++ b/docs/source/gke.md @@ -80,13 +80,13 @@ node-pools create "cassandra-stress-pool" \ --no-enable-autoupgrade --no-enable-autorepair ``` -3. A NodePool of 1 `n1-standard-4` Node, where the operator and the monitoring stack will be deployed. +3. A NodePool of 1 `n1-standard-8` Node, where the operator and the monitoring stack will be deployed. ``` gcloud beta container --project "${GCP_PROJECT}" \ node-pools create "operator-pool" \ --cluster "${CLUSTER_NAME}" \ --zone "${GCP_ZONE}" \ ---machine-type "n1-standard-4" \ +--machine-type "n1-standard-8 \ --num-nodes "1" \ --disk-type "pd-ssd" --disk-size "20" \ --image-type "UBUNTU" \