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.

63 lines
1.7 KiB

  1. ---
  2. # Set to true to allow pre-checks to fail and continue deployment
  3. ignore_assert_errors: false
  4. epel_enabled: false
  5. # Kubespray sets this to true after clusterDNS is running to apply changes to the host resolv.conf
  6. dns_late: false
  7. common_required_pkgs:
  8. - "{{ (ansible_distribution == 'openSUSE Tumbleweed') | ternary('openssl-1_1', 'openssl') }}"
  9. - curl
  10. - rsync
  11. - socat
  12. - unzip
  13. - e2fsprogs
  14. - xfsprogs
  15. - ebtables
  16. - bash-completion
  17. # Set to true if your network does not support IPv6
  18. # This maybe necessary for pulling Docker images from
  19. # GCE docker repository
  20. disable_ipv6_dns: false
  21. kube_cert_group: kube-cert
  22. kube_config_dir: /etc/kubernetes
  23. kube_cert_dir: "{{ kube_config_dir }}/ssl"
  24. kube_cert_compat_dir: /etc/kubernetes/pki
  25. kubelet_flexvolumes_plugins_dir: /usr/libexec/kubernetes/kubelet-plugins/volume/exec
  26. # Flatcar Container Linux by Kinvolk cloud init config file to define /etc/resolv.conf content
  27. # for hostnet pods and infra needs
  28. resolveconf_cloud_init_conf: /etc/resolveconf_cloud_init.conf
  29. # All inventory hostnames will be written into each /etc/hosts file.
  30. populate_inventory_to_hosts_file: true
  31. sysctl_file_path: "/etc/sysctl.d/99-sysctl.conf"
  32. etc_hosts_localhost_entries:
  33. 127.0.0.1:
  34. expected:
  35. - localhost
  36. - localhost.localdomain
  37. ::1:
  38. expected:
  39. - localhost6
  40. - localhost6.localdomain
  41. unexpected:
  42. - localhost
  43. - localhost.localdomain
  44. # Minimal memory requirement in MB for safety checks
  45. minimal_node_memory_mb: 1024
  46. minimal_master_memory_mb: 1500
  47. yum_repo_dir: /etc/yum.repos.d
  48. # number of times package install task should be retried
  49. pkg_install_retries: 4
  50. # Check if access_ip responds to ping. Set false if your firewall blocks ICMP.
  51. ping_access_ip: true