Skip to content

Commit

Permalink
added support for premium storage
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Mc Kinley committed Jan 17, 2017
1 parent 8d1e313 commit ae58c52
Show file tree
Hide file tree
Showing 6 changed files with 121 additions and 12 deletions.
19 changes: 19 additions & 0 deletions all_examples/all_example
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ openshift_pool_id: XXXXXXXXXXX
jumphost:
jumphost1:
name: jumphost1

tags:
region: "{{ region }}"
zone: jumphost
Expand All @@ -61,6 +62,9 @@ jumphost:
masters:
master1:
name: master1
datadisksize: 80
machinesize: Standard_DS2_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: zone1
Expand All @@ -81,6 +85,9 @@ masters:
infranodes:
infranode1:
name: infranode1
datadisksize: 64
machinesize: Standard_DS2_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: zone1
Expand All @@ -90,13 +97,19 @@ infranodes:
mbaas_id: mbaas1
infranode2:
name: infranode2
datadisksize: 64
machinesize: Standard_DS2_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: zone2
infra: "true"
type: core
mbaas_id: mbaas2
infranode3:
datadisksize: 64
machinesize: Standard_DS2_v2
storagtype: Premium_LRS
name: infranode3
tags:
region: "{{ region }}"
Expand All @@ -107,6 +120,9 @@ infranodes:
nodes:
node1:
name: node1
datadisksize: 64
machinesize: Standard_DS2_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: zone1
Expand All @@ -115,6 +131,9 @@ nodes:
type: apps
node2:
name: node2
datadisksize: 64
machinesize: Standard_DS2_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: zone2
Expand Down
30 changes: 30 additions & 0 deletions all_examples/all_mega_cluster
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ openshift_pool_id: XXXXXXXXXXX
jumphost:
jumphost1:
name: jumphost1
datadisksize: 64
machinesize: Standard_D1_v2
storagtype: Standard_LRS
tags:
region: "{{ region }}"
zone: jumphost
Expand All @@ -68,18 +71,27 @@ jumphost:
masters:
master1:
name: master1
datadisksize: 80
machinesize: Standard_DS3_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: zone1
type: infra
master2:
name: master2
datadisksize: 80
machinesize: Standard_DS3_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: infra
type: infra
master3:
name: master3
datadisksize: 80
machinesize: Standard_DS3_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: infra
Expand All @@ -88,33 +100,48 @@ masters:
infranodes:
infranode1:
name: infranode1
datadisksize: 80
machinesize: Standard_DS3_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: zone1
infra: "true"
infratype: registry
infranode2:
name: infranode2
datadisksize: 80
machinesize: Standard_DS3_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: zone2
infra: "true"
infranode3:
name: infranode3
datadisksize: 80
machinesize: Standard_DS3_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: zone3
infra: "true"
nodes:
node1:
name: node1
datadisksize: 80
machinesize: Standard_DS3_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: zone1
infra: "false"
stage: dev
node2:
name: node2
datadisksize: 80
machinesize: Standard_DS3_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: zone2
Expand All @@ -123,6 +150,9 @@ nodes:

node3prod:
name: node3prod
datadisksize: 80
machinesize: Standard_DS3_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: zone1
Expand Down
24 changes: 24 additions & 0 deletions all_examples/all_multi_master
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ openshift_pool_id: XXXXXXXXXXX
jumphost:
jumphost1:
name: jumphost1
datadisksize: 64
machinesize: Standard_D1_v2
storagtype: Standard_LRS
tags:
region: "{{ region }}"
zone: jumphost
Expand All @@ -62,18 +65,27 @@ jumphost:
masters:
master1:
name: master1
datadisksize: 80
machinesize: Standard_DS3_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: zone1
type: infra
master2:
name: master2
datadisksize: 80
machinesize: Standard_DS3_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: infra
type: infra
master3:
name: master3
datadisksize: 80
machinesize: Standard_DS3_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: infra
Expand All @@ -82,20 +94,29 @@ masters:
infranodes:
infranode1:
name: infranode1
datadisksize: 80
machinesize: Standard_DS3_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: zone1
infra: "true"
infratype: registry
infranode2:
name: infranode2
datadisksize: 80
machinesize: Standard_DS3_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: zone2
infra: "true"
nodes:
node1:
name: node1
datadisksize: 80
machinesize: Standard_DS3_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: zone1
Expand All @@ -104,6 +125,9 @@ nodes:

node2:
name: node2
datadisksize: 80
machinesize: Standard_DS3_v2
storagtype: Premium_LRS
tags:
region: "{{ region }}"
zone: zone2
Expand Down
24 changes: 24 additions & 0 deletions all_examples/all_rhmap_core
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ openshift_pool_id: XXXXXXXXXXX
jumphost:
jumphost1:
name: jumphost1
datadisksize: 64
machinesize: Standard_D1_v2
storagtype: Standard_LRS
tags:
region: "{{ region }}"
zone: jumphost
Expand All @@ -62,6 +65,9 @@ jumphost:
masters:
master1:
name: master1
datadisksize: 80
machinesize: Standard_D2_v2
storagtype: Standard_LRS
tags:
region: "{{ region }}"
zone: zone1
Expand All @@ -82,6 +88,9 @@ masters:
infranodes:
infranode1:
name: infranode1
datadisksize: 80
machinesize: Standard_D2_v2
storagtype: Standard_LRS
tags:
region: "{{ region }}"
zone: zone1
Expand All @@ -90,13 +99,19 @@ infranodes:
infratype: registry
infranode2:
name: infranode2
datadisksize: 80
machinesize: Standard_D2_v2
storagtype: Standard_LRS
tags:
region: "{{ region }}"
zone: zone2
infra: "true"
type: core
infranode3:
name: infranode3
datadisksize: 80
machinesize: Standard_D2_v2
storagtype: Standard_LRS
tags:
region: "{{ region }}"
zone: zone3
Expand All @@ -105,6 +120,9 @@ infranodes:
nodes:
node1:
name: node1
datadisksize: 80
machinesize: Standard_D2_v2
storagtype: Standard_LRS
tags:
region: "{{ region }}"
zone: zone1
Expand All @@ -115,6 +133,9 @@ nodes:

node2:
name: node2
datadisksize: 80
machinesize: Standard_D2_v2
storagtype: Standard_LRS
tags:
region: "{{ region }}"
zone: zone2
Expand All @@ -126,6 +147,9 @@ nodes:

node3:
name: node3
datadisksize: 80
machinesize: Standard_D2_v2
storagtype: Standard_LRS
tags:
region: "{{ region }}"
zone: zone3
Expand Down
12 changes: 12 additions & 0 deletions all_examples/all_single_master_small
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ openshift_pool_id: XXXXXXXXXXX
jumphost:
jumphost1:
name: jumphost1
datadisksize: 64
machinesize: Standard_D1_v2
storagtype: Standard_LRS
tags:
region: "{{ region }}"
zone: jumphost
Expand All @@ -62,6 +65,9 @@ jumphost:
masters:
master1:
name: master1
datadisksize: 80
machinesize: Standard_D2_v2
storagtype: Standard_LRS
tags:
region: "{{ region }}"
zone: zone1
Expand All @@ -71,6 +77,9 @@ masters:
infranodes:
infranode1:
name: infranode1
datadisksize: 80
machinesize: Standard_D2_v2
storagtype: Standard_LRS
tags:
region: "{{ region }}"
zone: zone1
Expand All @@ -80,6 +89,9 @@ infranodes:
nodes:
node1:
name: node1
datadisksize: 80
machinesize: Standard_D2_v2
storagtype: Standard_LRS
tags:
region: "{{ region }}"
zone: zone1
Expand Down
Loading

0 comments on commit ae58c52

Please sign in to comment.