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.

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