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.

37 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. # change to 0.0.0.0 to enable insecure access from anywhere (not recommended)
  4. kube_apiserver_insecure_bind_address: 127.0.0.1
  5. # This is where you can drop yaml/json files and the kubelet will run those
  6. # pods on startup
  7. kube_manifest_dir: "{{ kube_config_dir }}/manifests"
  8. dns_domain: "{{ cluster_name }}"
  9. # resolv.conf to base dns config
  10. kube_resolv_conf: "/etc/resolv.conf"
  11. kube_proxy_mode: iptables
  12. # If using the pure iptables proxy, SNAT everything
  13. kube_proxy_masquerade_all: true
  14. # kube_api_runtime_config:
  15. # - extensions/v1beta1/daemonsets=true
  16. # - extensions/v1beta1/deployments=true
  17. # Logging directory (sysvinit systems)
  18. kube_log_dir: "/var/log/kubernetes"
  19. # This directory is where all the additional config stuff goes
  20. # the kubernetes normally puts in /srv/kubernets.
  21. # This puts them in a sane location.
  22. # Editting this value will almost surely break something. Don't
  23. # change it. Things like the systemd scripts are hard coded to
  24. # look in here. Don't do it.
  25. kube_config_dir: /etc/kubernetes
  26. nginx_image_repo: nginx
  27. nginx_image_tag: 1.11.4-alpine