This commit is contained in:
grtn316 2022-05-12 20:27:07 -05:00
Родитель 62e57dc22a
Коммит 44432e7145
2 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -5,7 +5,7 @@
"_generator": {
"name": "bicep",
"version": "0.4.1008.15138",
"templateHash": "2608124782614293471"
"templateHash": "9956584930239740307"
}
},
"parameters": {
@ -17,6 +17,7 @@
},
"virtualMachineName": {
"type": "string",
"defaultValue": "JumpBoxVM",
"metadata": {
"description": "Name of the JumpBox that will deploy the OpenShift installer."
}
@ -85,6 +86,7 @@
},
"customInstallConfigURL": {
"type": "string",
"defaultValue": "https://raw.githubusercontent.com/Azure/maximo/main/src/ocp/install-config.yaml",
"metadata": {
"description": "You can optionally replace the install-config.yaml with a custom version by providing the full URL to the file"
}

Просмотреть файл

@ -25,7 +25,7 @@ var networkSecurityGroupRules = [
@description('Name of the OpenShift cluster')
param clusterName string
@description('Name of the JumpBox that will deploy the OpenShift installer.')
param virtualMachineName string
param virtualMachineName string = 'JumpBoxVM'
@description('VM Size for JumpBox')
param virtualMachineSize string = 'Standard_B2ms'
@description('Admin username for the JumpBox')
@ -52,7 +52,7 @@ param entitlementKey string
var osDiskType = 'Premium_LRS'
var zone = '1'
@description('You can optionally replace the install-config.yaml with a custom version by providing the full URL to the file')
param customInstallConfigURL string
param customInstallConfigURL string = 'https://raw.githubusercontent.com/Azure/maximo/main/src/ocp/install-config.yaml'
@allowed([
'Yes'
'No'