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.

94 lines
3.6 KiB

  1. ---
  2. ## Directory where etcd data stored
  3. etcd_data_dir: /var/lib/etcd
  4. ## Experimental kubeadm etcd deployment mode. Available only for new deployment
  5. etcd_kubeadm_enabled: false
  6. ## Directory where the binaries will be installed
  7. bin_dir: /usr/local/bin
  8. ## The access_ip variable is used to define how other nodes should access
  9. ## the node. This is used in flannel to allow other flannel nodes to see
  10. ## this node for example. The access_ip is really useful AWS and Google
  11. ## environments where the nodes are accessed remotely by the "public" ip,
  12. ## but don't know about that address themselves.
  13. # access_ip: 1.1.1.1
  14. ## External LB example config
  15. ## apiserver_loadbalancer_domain_name: "elb.some.domain"
  16. # loadbalancer_apiserver:
  17. # address: 1.2.3.4
  18. # port: 1234
  19. ## Internal loadbalancers for apiservers
  20. # loadbalancer_apiserver_localhost: true
  21. # valid options are "nginx" or "haproxy"
  22. # loadbalancer_apiserver_type: nginx # valid values "nginx" or "haproxy"
  23. ## Local loadbalancer should use this port
  24. ## And must be set port 6443
  25. loadbalancer_apiserver_port: 6443
  26. ## If loadbalancer_apiserver_healthcheck_port variable defined, enables proxy liveness check for nginx.
  27. loadbalancer_apiserver_healthcheck_port: 8081
  28. ### OTHER OPTIONAL VARIABLES
  29. ## Upstream dns servers
  30. # upstream_dns_servers:
  31. # - 8.8.8.8
  32. # - 8.8.4.4
  33. ## There are some changes specific to the cloud providers
  34. ## for instance we need to encapsulate packets with some network plugins
  35. ## If set the possible values are either 'gce', 'aws', 'azure', 'openstack', 'vsphere', 'oci', or 'external'
  36. ## When openstack is used make sure to source in the openstack credentials
  37. ## like you would do when using openstack-client before starting the playbook.
  38. # cloud_provider:
  39. ## When cloud_provider is set to 'external', you can set the cloud controller to deploy
  40. ## Supported cloud controllers are: 'openstack' and 'vsphere'
  41. ## When openstack or vsphere are used make sure to source in the required fields
  42. # external_cloud_provider:
  43. ## Set these proxy values in order to update package manager and docker daemon to use proxies
  44. # http_proxy: ""
  45. # https_proxy: ""
  46. ## Refer to roles/kubespray-defaults/defaults/main.yml before modifying no_proxy
  47. # no_proxy: ""
  48. ## Some problems may occur when downloading files over https proxy due to ansible bug
  49. ## https://github.com/ansible/ansible/issues/32750. Set this variable to False to disable
  50. ## SSL validation of get_url module. Note that kubespray will still be performing checksum validation.
  51. # download_validate_certs: False
  52. ## If you need exclude all cluster nodes from proxy and other resources, add other resources here.
  53. # additional_no_proxy: ""
  54. ## Since workers are included in the no_proxy variable by default, docker engine will be restarted on all nodes (all
  55. ## pods will restart) when adding or removing workers. To override this behaviour by only including master nodes in the
  56. ## no_proxy variable, set below to true:
  57. no_proxy_exclude_workers: false
  58. ## Certificate Management
  59. ## This setting determines whether certs are generated via scripts.
  60. ## Chose 'none' if you provide your own certificates.
  61. ## Option is "script", "none"
  62. ## note: vault is removed
  63. # cert_management: script
  64. ## Set to true to allow pre-checks to fail and continue deployment
  65. # ignore_assert_errors: false
  66. ## The read-only port for the Kubelet to serve on with no authentication/authorization. Uncomment to enable.
  67. # kube_read_only_port: 10255
  68. ## Set true to download and cache container
  69. # download_container: true
  70. ## Deploy container engine
  71. # Set false if you want to deploy container engine manually.
  72. # deploy_container_engine: true