diff options
author | Thomas Wiest <twiest@users.noreply.github.com> | 2015-11-19 10:36:44 -0500 |
---|---|---|
committer | Thomas Wiest <twiest@users.noreply.github.com> | 2015-11-19 10:36:44 -0500 |
commit | 248decb5a36906160ed820602ac2227b44023afb (patch) | |
tree | 8d22e45d51d2d4c5ae45ed29bc38be5dd37c3c5c /README_GCE.md | |
parent | 6ee1a17c508327bb30b4a6563859358cc13786ef (diff) | |
parent | f5c376f6643b5791dabd197f368436d30fa8e4bc (diff) | |
download | openshift-248decb5a36906160ed820602ac2227b44023afb.tar.gz openshift-248decb5a36906160ed820602ac2227b44023afb.tar.bz2 openshift-248decb5a36906160ed820602ac2227b44023afb.tar.xz openshift-248decb5a36906160ed820602ac2227b44023afb.zip |
Merge pull request #937 from rdossin1A/machine_types
Differentiate machine types on GCE (master and nodes)
Diffstat (limited to 'README_GCE.md')
-rw-r--r-- | README_GCE.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/README_GCE.md b/README_GCE.md index 50f8ade70..ea673b44d 100644 --- a/README_GCE.md +++ b/README_GCE.md @@ -43,7 +43,11 @@ Mandatory customization variables (check the values according to your tenant): * zone = europe-west1-d * network = default * gce_machine_type = n1-standard-2 +* gce_machine_master_type = n1-standard-1 +* gce_machine_node_type = n1-standard-2 * gce_machine_image = preinstalled-slave-50g-v5 +* gce_machine_master_image = preinstalled-slave-50g-v5 +* gce_machine_node_image = preinstalled-slave-50g-v5 1. vi ~/.gce/gce.ini @@ -56,7 +60,11 @@ gce_project_id = project_id zone = europe-west1-d network = default gce_machine_type = n1-standard-2 +gce_machine_master_type = n1-standard-1 +gce_machine_node_type = n1-standard-2 gce_machine_image = preinstalled-slave-50g-v5 +gce_machine_master_image = preinstalled-slave-50g-v5 +gce_machine_node_image = preinstalled-slave-50g-v5 ``` 1. Define the environment variable GCE_INI_PATH so gce.py can pick it up and bin/cluster can also read it |