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
2.5 KiB

  1. ---
  2. run_gitinfos: false
  3. # Set to true to allow pre-checks to fail and continue deployment
  4. ignore_assert_errors: false
  5. epel_rpm_download_url: "https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm"
  6. epel_enabled: true
  7. common_required_pkgs:
  8. - python-httplib2
  9. - openssl
  10. - curl
  11. - rsync
  12. - bash-completion
  13. - socat
  14. - unzip
  15. # Set to true if your network does not support IPv6
  16. # This maybe necessary for pulling Docker images from
  17. # GCE docker repository
  18. disable_ipv6_dns: false
  19. kube_cert_group: kube-cert
  20. kube_config_dir: /etc/kubernetes
  21. # For the openstack integration kubelet will need credentials to access
  22. # openstack apis like nova and cinder. Per default this values will be
  23. # read from the environment.
  24. openstack_auth_url: "{{ lookup('env','OS_AUTH_URL') }}"
  25. openstack_username: "{{ lookup('env','OS_USERNAME') }}"
  26. openstack_password: "{{ lookup('env','OS_PASSWORD') }}"
  27. openstack_region: "{{ lookup('env','OS_REGION_NAME') }}"
  28. openstack_tenant_id: "{{ lookup('env','OS_TENANT_ID')|default(lookup('env','OS_PROJECT_ID'),true) }}"
  29. openstack_domain_name: "{{ lookup('env','OS_USER_DOMAIN_NAME') }}"
  30. openstack_domain_id: "{{ lookup('env','OS_USER_DOMAIN_ID') }}"
  31. # For the vsphere integration, kubelet will need credentials to access
  32. # vsphere apis
  33. # Documentation regarding these values can be found
  34. # https://github.com/kubernetes/kubernetes/blob/master/pkg/cloudprovider/providers/vsphere/vsphere.go#L105
  35. vsphere_vcenter_ip: "{{ lookup('env', 'VSPHERE_VCENTER') }}"
  36. vsphere_vcenter_port: "{{ lookup('env', 'VSPHERE_VCENTER_PORT') }}"
  37. vsphere_user: "{{ lookup('env', 'VSPHERE_USER') }}"
  38. vsphere_password: "{{ lookup('env', 'VSPHERE_PASSWORD') }}"
  39. vsphere_datacenter: "{{ lookup('env', 'VSPHERE_DATACENTER') }}"
  40. vsphere_datastore: "{{ lookup('env', 'VSPHERE_DATASTORE') }}"
  41. vsphere_working_dir: "{{ lookup('env', 'VSPHERE_WORKING_DIR') }}"
  42. vsphere_insecure: "{{ lookup('env', 'VSPHERE_INSECURE') }}"
  43. vsphere_resource_pool: "{{ lookup('env', 'VSPHERE_RESOURCE_POOL') }}"
  44. vsphere_scsi_controller_type: pvscsi
  45. # vsphere_public_network is name of the network the VMs are joined to
  46. vsphere_public_network: "{{ lookup('env', 'VSPHERE_PUBLIC_NETWORK')|default('') }}"
  47. # Container Linux by CoreOS cloud init config file to define /etc/resolv.conf content
  48. # for hostnet pods and infra needs
  49. resolveconf_cloud_init_conf: /etc/resolveconf_cloud_init.conf
  50. # All inventory hostnames will be written into each /etc/hosts file.
  51. populate_inventory_to_hosts_file: true
  52. preinstall_selinux_state: permissive