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.

38 lines
1.5 KiB

9 years ago
  1. # This directory is where all the additional scripts go
  2. # that Kubernetes normally puts in /srv/kubernetes.
  3. # This puts them in a sane location
  4. kube_script_dir: "{{ bin_dir }}/kubernetes-scripts"
  5. # This directory is where all the additional config stuff goes
  6. # the kubernetes normally puts in /srv/kubernets.
  7. # This puts them in a sane location.
  8. # Editting this value will almost surely break something. Don't
  9. # change it. Things like the systemd scripts are hard coded to
  10. # look in here. Don't do it.
  11. kube_config_dir: /etc/kubernetes
  12. # This is where all the cert scripts and certs will be located
  13. kube_cert_dir: "{{ kube_config_dir }}/certs"
  14. # This is where all of the bearer tokens will be stored
  15. kube_token_dir: "{{ kube_config_dir }}/tokens"
  16. # This is where to save basic auth file
  17. kube_users_dir: "{{ kube_config_dir }}/users"
  18. # This is where you can drop yaml/json files and the kubelet will run those
  19. # pods on startup
  20. kube_manifest_dir: "{{ kube_config_dir }}/manifests"
  21. # This is the group that the cert creation scripts chgrp the
  22. # cert files to. Not really changable...
  23. kube_cert_group: kube-cert
  24. dns_domain: "{{ cluster_name }}"
  25. # IP address of the DNS server.
  26. # Kubernetes will create a pod with several containers, serving as the DNS
  27. # server and expose it under this IP address. The IP address must be from
  28. # the range specified as kube_service_addresses. This magic will actually
  29. # pick the 10th ip address in the kube_service_addresses range and use that.
  30. # dns_server: "{{ kube_service_addresses|ipaddr('net')|ipaddr(253)|ipaddr('address') }}"