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.

33 lines
1.2 KiB

9 years ago
9 years ago
9 years ago
  1. # This is where all the cert scripts and certs will be located
  2. kube_cert_dir: "{{ kube_config_dir }}/ssl"
  3. # This is where all of the bearer tokens will be stored
  4. kube_token_dir: "{{ kube_config_dir }}/tokens"
  5. # This is where to save basic auth file
  6. kube_users_dir: "{{ kube_config_dir }}/users"
  7. dns_domain: "{{ cluster_name }}"
  8. # resolv.conf to base dns config
  9. kube_resolv_conf: "/etc/resolv.conf"
  10. kube_proxy_mode: iptables
  11. # An experimental dev/test only dynamic volumes provisioner,
  12. # for PetSets. Works for kube>=v1.3 only.
  13. kube_hostpath_dynamic_provisioner: "false"
  14. hyperkube_image_repo: "quay.io/coreos/hyperkube"
  15. hyperkube_image_tag: "{{ kube_version }}_coreos.0"
  16. # IP address of the DNS server.
  17. # Kubernetes will create a pod with several containers, serving as the DNS
  18. # server and expose it under this IP address. The IP address must be from
  19. # the range specified as kube_service_addresses. This magic will actually
  20. # pick the 10th ip address in the kube_service_addresses range and use that.
  21. dns_server: "{{ kube_service_addresses|ipaddr('net')|ipaddr(253)|ipaddr('address') }}"
  22. # kube_api_runtime_config:
  23. # - extensions/v1beta1/daemonsets=true
  24. # - extensions/v1beta1/deployments=true