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.

40 lines
1.4 KiB

  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. # An experimental dev/test only dynamic volumes provisioner,
  8. # for PetSets. Works for kube>=v1.3 only.
  9. kube_hostpath_dynamic_provisioner: "false"
  10. # This is where you can drop yaml/json files and the kubelet will run those
  11. # pods on startup
  12. kube_manifest_dir: "{{ kube_config_dir }}/manifests"
  13. # This directory is where all the additional config stuff goes
  14. # the kubernetes normally puts in /srv/kubernets.
  15. # This puts them in a sane location.
  16. # Editting this value will almost surely break something. Don't
  17. # change it. Things like the systemd scripts are hard coded to
  18. # look in here. Don't do it.
  19. kube_config_dir: /etc/kubernetes
  20. # change to 0.0.0.0 to enable insecure access from anywhere (not recommended)
  21. kube_apiserver_insecure_bind_address: 127.0.0.1
  22. # A port range to reserve for services with NodePort visibility.
  23. # Inclusive at both ends of the range.
  24. kube_apiserver_node_port_range: "30000-32767"
  25. # Logging directory (sysvinit systems)
  26. kube_log_dir: "/var/log/kubernetes"
  27. # ETCD cert dir for connecting apiserver to etcd
  28. etcd_config_dir: /etc/ssl/etcd
  29. etcd_cert_dir: "{{ etcd_config_dir }}/ssl"