Skip to content

Commit

Permalink
docs: bump instance type in GKE operator-pool
Browse files Browse the repository at this point in the history
n1-standard-4 is too small to handle both monitoring
and operator.
This also sync what we have in gke.sh
  • Loading branch information
zimnx committed Jan 5, 2021
1 parent 8fffb46 commit ef90418
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/gke.md
Expand Up @@ -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" \
Expand Down

0 comments on commit ef90418

Please sign in to comment.