You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
2.1 KiB

  1. # Due to some Azure limitations (ex:- Storage Account's name must be unique),
  2. # this name must be globally unique - it will be used as a prefix for azure components
  3. cluster_name: example
  4. # Set this to true if you do not want to have public IPs for your masters and minions. This will provision a bastion
  5. # node that can be used to access the masters and minions
  6. use_bastion: false
  7. # Set this to a preferred name that will be used as the first part of the dns name for your bastotion host. For example: k8s-bastion.<azureregion>.cloudapp.azure.com.
  8. # This is convenient when exceptions have to be configured on a firewall to allow ssh to the given bastion host.
  9. # bastion_domain_prefix: k8s-bastion
  10. number_of_k8s_masters: 3
  11. number_of_k8s_nodes: 3
  12. masters_vm_size: Standard_A2
  13. masters_os_disk_size: 1000
  14. minions_vm_size: Standard_A2
  15. minions_os_disk_size: 1000
  16. admin_username: devops
  17. admin_password: changeme
  18. # MAKE SURE TO CHANGE THIS TO YOUR PUBLIC KEY to access your azure machines
  19. ssh_public_keys:
  20. - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLRzcxbsFDdEibiyXCSdIFh7bKbXso1NqlKjEyPTptf3aBXHEhVil0lJRjGpTlpfTy7PHvXFbXIOCdv9tOmeH1uxWDDeZawgPFV6VSZ1QneCL+8bxzhjiCn8133wBSPZkN8rbFKd9eEUUBfx8ipCblYblF9FcidylwtMt5TeEmXk8yRVkPiCuEYuDplhc2H0f4PsK3pFb5aDVdaDT3VeIypnOQZZoUxHWqm6ThyHrzLJd3SrZf+RROFWW1uInIDf/SZlXojczUYoffxgT1lERfOJCHJXsqbZWugbxQBwqsVsX59+KPxFFo6nV88h3UQr63wbFx52/MXkX4WrCkAHzN ablock-vwfs@dell-lappy"
  21. # Disable using ssh using password. Change it to false to allow to connect to ssh by password
  22. disablePasswordAuthentication: true
  23. # Azure CIDRs
  24. azure_vnet_cidr: 10.0.0.0/8
  25. azure_admin_cidr: 10.241.2.0/24
  26. azure_masters_cidr: 10.0.4.0/24
  27. azure_minions_cidr: 10.240.0.0/16
  28. # Azure loadbalancer port to use to access your cluster
  29. kube_apiserver_port: 6443
  30. # Azure Netwoking and storage naming to use with inventory/all.yml
  31. #azure_virtual_network_name: KubeVNET
  32. #azure_subnet_admin_name: ad-subnet
  33. #azure_subnet_masters_name: master-subnet
  34. #azure_subnet_minions_name: minion-subnet
  35. #azure_route_table_name: routetable
  36. #azure_security_group_name: secgroup
  37. # Storage types available are: "Standard_LRS","Premium_LRS"
  38. #azure_storage_account_type: Standard_LRS