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.

50 lines
1.7 KiB

  1. ---
  2. run_gitinfos: false
  3. # This directory is where all the additional scripts go
  4. # that Kubernetes normally puts in /srv/kubernetes.
  5. # This puts them in a sane location
  6. kube_script_dir: "{{ bin_dir }}/kubernetes-scripts"
  7. # This directory is where all the additional config stuff goes
  8. # the kubernetes normally puts in /srv/kubernets.
  9. # This puts them in a sane location.
  10. # Editting this value will almost surely break something. Don't
  11. # change it. Things like the systemd scripts are hard coded to
  12. # look in here. Don't do it.
  13. kube_config_dir: /etc/kubernetes
  14. # Logging directory (sysvinit systems)
  15. kube_log_dir: "/var/log/kubernetes"
  16. # This is where you can drop yaml/json files and the kubelet will run those
  17. # pods on startup
  18. kube_manifest_dir: "{{ kube_config_dir }}/manifests"
  19. epel_rpm_download_url: "https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm"
  20. common_required_pkgs:
  21. - python-httplib2
  22. - openssl
  23. - curl
  24. - rsync
  25. - bash-completion
  26. - socat
  27. # Set to true if your network does not support IPv6
  28. # This maybe necessary for pulling Docker images from
  29. # GCE docker repository
  30. disable_ipv6_dns: false
  31. # For the openstack integration kubelet will need credentials to access
  32. # openstack apis like nova and cinder. Per default this values will be
  33. # read from the environment.
  34. openstack_auth_url: "{{ lookup('env','OS_AUTH_URL') }}"
  35. openstack_username: "{{ lookup('env','OS_USERNAME') }}"
  36. openstack_password: "{{ lookup('env','OS_PASSWORD') }}"
  37. openstack_region: "{{ lookup('env','OS_REGION_NAME') }}"
  38. openstack_tenant_id: "{{ lookup('env','OS_TENANT_ID') }}"
  39. # All clients access each node individually, instead of using a load balancer.
  40. etcd_multiaccess: true