Skip to content

Commit c381ab1

Browse files
use e2-medium machines in gke examples (#3744) (#2270)
Signed-off-by: Modular Magician <[email protected]>
1 parent 4cdeb75 commit c381ab1

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.changelog/3744.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:none
2+
3+
```

website/docs/r/container_cluster.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ resource "google_container_node_pool" "primary_preemptible_nodes" {
5151
5252
node_config {
5353
preemptible = true
54-
machine_type = "n1-standard-1"
54+
machine_type = "e2-medium"
5555
5656
metadata = {
5757
disable-legacy-endpoints = "true"
@@ -564,7 +564,7 @@ The `node_config` block supports:
564564
attached to each cluster node. Defaults to 0.
565565

566566
* `machine_type` - (Optional) The name of a Google Compute Engine machine type.
567-
Defaults to `n1-standard-1`. To create a custom machine type, value should be set as specified
567+
Defaults to `e2-medium`. To create a custom machine type, value should be set as specified
568568
[here](https://cloud.google.com/compute/docs/reference/latest/instances#machineType).
569569

570570
* `metadata` - (Optional) The metadata key/value pairs assigned to instances in

website/docs/r/container_node_pool.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ resource "google_container_node_pool" "primary_preemptible_nodes" {
3838
3939
node_config {
4040
preemptible = true
41-
machine_type = "n1-standard-1"
41+
machine_type = "e2-medium"
4242
4343
oauth_scopes = [
4444
"https://www.googleapis.com/auth/logging.write",

0 commit comments

Comments
 (0)