2019-04-01 09:38:33 +00:00
|
|
|
---
|
2016-12-12 16:21:56 +00:00
|
|
|
apiVersion: "2015-06-15"
|
|
|
|
|
2017-07-19 16:03:57 +00:00
|
|
|
virtualNetworkName: "{{ azure_virtual_network_name | default('KubeVNET') }}"
|
2016-12-12 16:21:56 +00:00
|
|
|
|
2017-07-19 16:03:57 +00:00
|
|
|
subnetAdminName: "{{ azure_subnet_admin_name | default('ad-subnet') }}"
|
|
|
|
subnetMastersName: "{{ azure_subnet_masters_name | default('master-subnet') }}"
|
|
|
|
subnetMinionsName: "{{ azure_subnet_minions_name | default('minion-subnet') }}"
|
2016-12-12 16:21:56 +00:00
|
|
|
|
2017-07-19 16:03:57 +00:00
|
|
|
routeTableName: "{{ azure_route_table_name | default('routetable') }}"
|
|
|
|
securityGroupName: "{{ azure_security_group_name | default('secgroup') }}"
|
2016-12-12 16:21:56 +00:00
|
|
|
|
2017-07-19 16:03:57 +00:00
|
|
|
nameSuffix: "{{ cluster_name }}"
|
2016-12-12 16:21:56 +00:00
|
|
|
|
|
|
|
availabilitySetMasters: "master-avs"
|
|
|
|
availabilitySetMinions: "minion-avs"
|
|
|
|
|
|
|
|
faultDomainCount: 3
|
|
|
|
updateDomainCount: 10
|
|
|
|
|
|
|
|
bastionVmSize: Standard_A0
|
|
|
|
bastionVMName: bastion
|
|
|
|
bastionIPAddressName: bastion-pubip
|
|
|
|
|
|
|
|
disablePasswordAuthentication: true
|
|
|
|
|
|
|
|
sshKeyPath: "/home/{{admin_username}}/.ssh/authorized_keys"
|
|
|
|
|
|
|
|
imageReference:
|
|
|
|
publisher: "OpenLogic"
|
|
|
|
offer: "CentOS"
|
2019-05-07 11:37:42 +00:00
|
|
|
sku: "7.5"
|
2016-12-12 16:21:56 +00:00
|
|
|
version: "latest"
|
|
|
|
imageReferenceJson: "{{imageReference|to_json}}"
|
|
|
|
|
|
|
|
storageAccountName: "sa{{nameSuffix | replace('-', '')}}"
|
2017-07-19 16:03:57 +00:00
|
|
|
storageAccountType: "{{ azure_storage_account_type | default('Standard_LRS') }}"
|