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.

48 lines
1.8 KiB

9 years ago
9 years ago
9 years ago
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 }}/ssl"
  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. # Logging directory (sysvinit systems)
  22. kube_log_dir: "/var/log/kubernetes"
  23. dns_domain: "{{ cluster_name }}"
  24. kube_proxy_mode: userspace
  25. # Temporary image, waiting for official google release
  26. # hyperkube_image_repo: gcr.io/google_containers/hyperkube
  27. hyperkube_image_repo: quay.io/ant31/kubernetes-hyperkube
  28. hyperkube_image_tag: v1.1.4
  29. # IP address of the DNS server.
  30. # Kubernetes will create a pod with several containers, serving as the DNS
  31. # server and expose it under this IP address. The IP address must be from
  32. # the range specified as kube_service_addresses. This magic will actually
  33. # pick the 10th ip address in the kube_service_addresses range and use that.
  34. dns_server: "{{ kube_service_addresses|ipaddr('net')|ipaddr(253)|ipaddr('address') }}"
  35. kube_api_runtime_config:
  36. - extensions/v1beta1/daemonsets=true
  37. - extensions/v1beta1/deployments=true