Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Specify the machine type for agones-metrics nodepool since the default one doesn't meet resource requirement #3109

Merged
merged 1 commit into from
Apr 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion site/content/en/docs/Guides/metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,8 @@ As an example, to set up a dedicated node pool for Prometheus on GKE, run the fo
gcloud container node-pools create agones-metrics --cluster=... --zone=... \
--node-taints agones.dev/agones-metrics=true:NoExecute \
--node-labels agones.dev/agones-metrics=true \
--num-nodes=1
--num-nodes=1 \
--machine-type=e2-standard-4
```

By default we will disable the push gateway (we don't need it for Agones) and other exporters.
Expand Down
3 changes: 2 additions & 1 deletion site/content/en/docs/Installation/Creating Cluster/gke.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,8 @@ gcloud container node-pools create agones-metrics \
--no-enable-autoupgrade \
--node-taints agones.dev/agones-metrics=true:NoExecute \
--node-labels agones.dev/agones-metrics=true \
--num-nodes=1
--num-nodes=1 \
--machine-type=e2-standard-4
```

Flag explanations:
Expand Down