forked from BorisB2015/openshift-origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azuredeploy.parameters.sample.local.json
63 lines (63 loc) · 1.35 KB
/
azuredeploy.parameters.sample.local.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"_artifactsLocation": {
"value": "https://raw.githubusercontent.com/Microsoft/openshift-origin/master/"
},
"masterVmSize": {
"value": "Standard_DS3_v2"
},
"infraVmSize": {
"value": "Standard_DS3_v2"
},
"nodeVmSize": {
"value": "Standard_DS3_v2"
},
"openshiftClusterPrefix": {
"value": "mycluster"
},
"masterInstanceCount": {
"value": 3
},
"infraInstanceCount": {
"value": 2
},
"nodeInstanceCount": {
"value": 1
},
"dataDiskSize": {
"value": 128
},
"adminUsername": {
"value": "azureuser"
},
"openshiftPassword": {
"value": "ThisIsYourSampleSecret!ShouldStayLocal!"
},
"sshPublicKey": {
"value": "ssh-rsa AAAAB3...Public...Key...You...Created...In...Prep...Steps...swXg5szN"
},
"keyVaultResourceGroup": {
"value": "OpenShiftRG1"
},
"keyVaultName": {
"value": "OpenShiftKV"
},
"keyVaultSecret": {
"value": "OpenShiftPK1"
},
"aadClientId": {
"value": "ThisIsYourAzureADServicePrincipalClientID"
},
"aadClientSecret": {
"value": "ThisIsYourAzureADServicePrincipalClientSecret"
},
"defaultSubDomainType": {
"value": "nipio"
},
"defaultSubDomain": {
"value": "domain-name-all-lowercase-if-custom-used.com"
}
}
}