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.

21 lines
834 B

  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. # This directory is where all the additional config stuff goes
  8. # the kubernetes normally puts in /srv/kubernets.
  9. # This puts them in a sane location.
  10. # Editting this value will almost surely break something. Don't
  11. # change it. Things like the systemd scripts are hard coded to
  12. # look in here. Don't do it.
  13. kube_config_dir: /etc/kubernetes
  14. # This directory is where all the additional scripts go
  15. # that Kubernetes normally puts in /srv/kubernetes.
  16. # This puts them in a sane location
  17. kube_script_dir: "{{ bin_dir }}/kubernetes-scripts"