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