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.

139 lines
5.9 KiB

  1. ---
  2. ## Directory where the binaries will be installed
  3. bin_dir: /usr/local/bin
  4. ## The access_ip variable is used to define how other nodes should access
  5. ## the node. This is used in flannel to allow other flannel nodes to see
  6. ## this node for example. The access_ip is really useful AWS and Google
  7. ## environments where the nodes are accessed remotely by the "public" ip,
  8. ## but don't know about that address themselves.
  9. # access_ip: 1.1.1.1
  10. ## External LB example config
  11. ## apiserver_loadbalancer_domain_name: "elb.some.domain"
  12. # loadbalancer_apiserver:
  13. # address: 1.2.3.4
  14. # port: 1234
  15. ## Internal loadbalancers for apiservers
  16. # loadbalancer_apiserver_localhost: true
  17. # valid options are "nginx" or "haproxy"
  18. # loadbalancer_apiserver_type: nginx # valid values "nginx" or "haproxy"
  19. ## Local loadbalancer should use this port
  20. ## And must be set port 6443
  21. loadbalancer_apiserver_port: 6443
  22. ## If loadbalancer_apiserver_healthcheck_port variable defined, enables proxy liveness check for nginx.
  23. loadbalancer_apiserver_healthcheck_port: 8081
  24. ### OTHER OPTIONAL VARIABLES
  25. ## By default, Kubespray collects nameservers on the host. It then adds the previously collected nameservers in nameserverentries.
  26. ## If true, Kubespray does not include host nameservers in nameserverentries in dns_late stage. However, It uses the nameserver to make sure cluster installed safely in dns_early stage.
  27. ## Use this option with caution, you may need to define your dns servers. Otherwise, the outbound queries such as www.google.com may fail.
  28. # disable_host_nameservers: false
  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', 'vsphere', 'huaweicloud' and 'hcloud'
  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 and custom CA for https_proxy if needed
  44. # http_proxy: ""
  45. # https_proxy: ""
  46. # https_proxy_cert_file: ""
  47. ## Refer to roles/kubespray-defaults/defaults/main/main.yml before modifying no_proxy
  48. # no_proxy: ""
  49. ## Some problems may occur when downloading files over https proxy due to ansible bug
  50. ## https://github.com/ansible/ansible/issues/32750. Set this variable to False to disable
  51. ## SSL validation of get_url module. Note that kubespray will still be performing checksum validation.
  52. # download_validate_certs: False
  53. ## If you need exclude all cluster nodes from proxy and other resources, add other resources here.
  54. # additional_no_proxy: ""
  55. ## If you need to disable proxying of os package repositories but are still behind an http_proxy set
  56. ## skip_http_proxy_on_os_packages to true
  57. ## This will cause kubespray not to set proxy environment in /etc/yum.conf for centos and in /etc/apt/apt.conf for debian/ubuntu
  58. ## Special information for debian/ubuntu - you have to set the no_proxy variable, then apt package will install from your source of wish
  59. # skip_http_proxy_on_os_packages: false
  60. ## Since workers are included in the no_proxy variable by default, docker engine will be restarted on all nodes (all
  61. ## pods will restart) when adding or removing workers. To override this behaviour by only including control plane nodes
  62. ## in the no_proxy variable, set below to true:
  63. no_proxy_exclude_workers: false
  64. ## Certificate Management
  65. ## This setting determines whether certs are generated via scripts.
  66. ## Chose 'none' if you provide your own certificates.
  67. ## Option is "script", "none"
  68. # cert_management: script
  69. ## Set to true to allow pre-checks to fail and continue deployment
  70. # ignore_assert_errors: false
  71. ## The read-only port for the Kubelet to serve on with no authentication/authorization. Uncomment to enable.
  72. # kube_read_only_port: 10255
  73. ## Set true to download and cache container
  74. # download_container: true
  75. ## Deploy container engine
  76. # Set false if you want to deploy container engine manually.
  77. # deploy_container_engine: true
  78. ## Red Hat Enterprise Linux subscription registration
  79. ## Add either RHEL subscription Username/Password or Organization ID/Activation Key combination
  80. ## Update RHEL subscription purpose usage, role and SLA if necessary
  81. # rh_subscription_username: ""
  82. # rh_subscription_password: ""
  83. # rh_subscription_org_id: ""
  84. # rh_subscription_activation_key: ""
  85. # rh_subscription_usage: "Development"
  86. # rh_subscription_role: "Red Hat Enterprise Server"
  87. # rh_subscription_sla: "Self-Support"
  88. ## Check if access_ip responds to ping. Set false if your firewall blocks ICMP.
  89. # ping_access_ip: true
  90. # sysctl_file_path to add sysctl conf to
  91. # sysctl_file_path: "/etc/sysctl.d/99-sysctl.conf"
  92. ## Variables for webhook token auth https://kubernetes.io/docs/reference/access-authn-authz/authentication/#webhook-token-authentication
  93. kube_webhook_token_auth: false
  94. kube_webhook_token_auth_url_skip_tls_verify: false
  95. # kube_webhook_token_auth_url: https://...
  96. ## base64-encoded string of the webhook's CA certificate
  97. # kube_webhook_token_auth_ca_data: "LS0t..."
  98. ## NTP Settings
  99. # Start the ntpd or chrony service and enable it at system boot.
  100. ntp_enabled: false
  101. ntp_manage_config: false
  102. ntp_servers:
  103. - "0.pool.ntp.org iburst"
  104. - "1.pool.ntp.org iburst"
  105. - "2.pool.ntp.org iburst"
  106. - "3.pool.ntp.org iburst"
  107. ## Used to control no_log attribute
  108. unsafe_show_logs: false
  109. ## If enabled it will allow kubespray to attempt setup even if the distribution is not supported. For unsupported distributions this can lead to unexpected failures in some cases.
  110. allow_unsupported_distribution_setup: false