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.

118 lines
4.8 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. ## If the cilium is going to be used in strict mode, we can use the
  24. ## localhost connection and not use the external LB. If this parameter is
  25. ## not specified, the first node to connect to kubeapi will be used.
  26. # use_localhost_as_kubeapi_loadbalancer: true
  27. ## Local loadbalancer should use this port
  28. ## And must be set port 6443
  29. loadbalancer_apiserver_port: 6443
  30. ## If loadbalancer_apiserver_healthcheck_port variable defined, enables proxy liveness check for nginx.
  31. loadbalancer_apiserver_healthcheck_port: 8081
  32. ### OTHER OPTIONAL VARIABLES
  33. ## Upstream dns servers
  34. # upstream_dns_servers:
  35. # - 8.8.8.8
  36. # - 8.8.4.4
  37. ## There are some changes specific to the cloud providers
  38. ## for instance we need to encapsulate packets with some network plugins
  39. ## If set the possible values are either 'gce', 'aws', 'azure', 'openstack', 'vsphere', 'oci', or 'external'
  40. ## When openstack is used make sure to source in the openstack credentials
  41. ## like you would do when using openstack-client before starting the playbook.
  42. # cloud_provider:
  43. ## When cloud_provider is set to 'external', you can set the cloud controller to deploy
  44. ## Supported cloud controllers are: 'openstack' and 'vsphere'
  45. ## When openstack or vsphere are used make sure to source in the required fields
  46. # external_cloud_provider:
  47. ## Set these proxy values in order to update package manager and docker daemon to use proxies
  48. # http_proxy: ""
  49. # https_proxy: ""
  50. ## Refer to roles/kubespray-defaults/defaults/main.yml before modifying no_proxy
  51. # no_proxy: ""
  52. ## Some problems may occur when downloading files over https proxy due to ansible bug
  53. ## https://github.com/ansible/ansible/issues/32750. Set this variable to False to disable
  54. ## SSL validation of get_url module. Note that kubespray will still be performing checksum validation.
  55. # download_validate_certs: False
  56. ## If you need exclude all cluster nodes from proxy and other resources, add other resources here.
  57. # additional_no_proxy: ""
  58. ## If you need to disable proxying of os package repositories but are still behind an http_proxy set
  59. ## skip_http_proxy_on_os_packages to true
  60. ## This will cause kubespray not to set proxy environment in /etc/yum.conf for centos and in /etc/apt/apt.conf for debian/ubuntu
  61. ## Special information for debian/ubuntu - you have to set the no_proxy variable, then apt package will install from your source of wish
  62. # skip_http_proxy_on_os_packages: false
  63. ## Since workers are included in the no_proxy variable by default, docker engine will be restarted on all nodes (all
  64. ## pods will restart) when adding or removing workers. To override this behaviour by only including master nodes in the
  65. ## no_proxy variable, set below to true:
  66. no_proxy_exclude_workers: false
  67. ## Certificate Management
  68. ## This setting determines whether certs are generated via scripts.
  69. ## Chose 'none' if you provide your own certificates.
  70. ## Option is "script", "none"
  71. # cert_management: script
  72. ## Set to true to allow pre-checks to fail and continue deployment
  73. # ignore_assert_errors: false
  74. ## The read-only port for the Kubelet to serve on with no authentication/authorization. Uncomment to enable.
  75. # kube_read_only_port: 10255
  76. ## Set true to download and cache container
  77. # download_container: true
  78. ## Deploy container engine
  79. # Set false if you want to deploy container engine manually.
  80. # deploy_container_engine: true
  81. ## Red Hat Enterprise Linux subscription registration
  82. ## Add either RHEL subscription Username/Password or Organization ID/Activation Key combination
  83. ## Update RHEL subscription purpose usage, role and SLA if necessary
  84. # rh_subscription_username: ""
  85. # rh_subscription_password: ""
  86. # rh_subscription_org_id: ""
  87. # rh_subscription_activation_key: ""
  88. # rh_subscription_usage: "Development"
  89. # rh_subscription_role: "Red Hat Enterprise Server"
  90. # rh_subscription_sla: "Self-Support"
  91. ## Check if access_ip responds to ping. Set false if your firewall blocks ICMP.
  92. # ping_access_ip: true