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.

54 lines
2.2 KiB

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