2015-10-03 20:19:50 +00:00
|
|
|
# This directory is where all the additional scripts go
|
|
|
|
# that Kubernetes normally puts in /srv/kubernetes.
|
|
|
|
# This puts them in a sane location
|
|
|
|
kube_script_dir: "{{ bin_dir }}/kubernetes-scripts"
|
|
|
|
|
|
|
|
# This directory is where all the additional config stuff goes
|
|
|
|
# the kubernetes normally puts in /srv/kubernets.
|
|
|
|
# This puts them in a sane location.
|
|
|
|
# Editting this value will almost surely break something. Don't
|
|
|
|
# change it. Things like the systemd scripts are hard coded to
|
|
|
|
# look in here. Don't do it.
|
|
|
|
kube_config_dir: /etc/kubernetes
|
|
|
|
|
|
|
|
# This is where all the cert scripts and certs will be located
|
|
|
|
kube_cert_dir: "{{ kube_config_dir }}/certs"
|
|
|
|
|
|
|
|
# This is where all of the bearer tokens will be stored
|
|
|
|
kube_token_dir: "{{ kube_config_dir }}/tokens"
|
|
|
|
|
|
|
|
# This is where to save basic auth file
|
|
|
|
kube_users_dir: "{{ kube_config_dir }}/users"
|
|
|
|
|
|
|
|
# This is where you can drop yaml/json files and the kubelet will run those
|
|
|
|
# pods on startup
|
|
|
|
kube_manifest_dir: "{{ kube_config_dir }}/manifests"
|
|
|
|
|
|
|
|
# This is the group that the cert creation scripts chgrp the
|
|
|
|
# cert files to. Not really changable...
|
|
|
|
kube_cert_group: kube-cert
|
|
|
|
|
|
|
|
dns_domain: "{{ cluster_name }}"
|
|
|
|
|
2015-11-20 09:38:39 +00:00
|
|
|
kube_proxy_mode: iptables
|
2015-11-20 13:04:13 +00:00
|
|
|
kube_master_port: 443
|
2015-10-03 20:19:50 +00:00
|
|
|
# IP address of the DNS server.
|
|
|
|
# Kubernetes will create a pod with several containers, serving as the DNS
|
|
|
|
# server and expose it under this IP address. The IP address must be from
|
|
|
|
# the range specified as kube_service_addresses. This magic will actually
|
|
|
|
# pick the 10th ip address in the kube_service_addresses range and use that.
|
|
|
|
# dns_server: "{{ kube_service_addresses|ipaddr('net')|ipaddr(253)|ipaddr('address') }}"
|