67 lines
2.6 KiB
YAML
67 lines
2.6 KiB
YAML
# Only used for the location to store flannel info in etcd, but may be used
|
|
# for dns purposes and cluster id purposes in the future.
|
|
cluster_name: kube.local
|
|
|
|
# Account name of remote user. Ansible will use this user account to ssh into
|
|
# the managed machines. The user must be able to use sudo without asking
|
|
# for password unless ansible_sudo_pass is set
|
|
#ansible_ssh_user: root
|
|
|
|
# password for the ansible_ssh_user. If this is unset you will need to set up
|
|
# ssh keys so a password is not needed.
|
|
#ansible_ssh_pass: password
|
|
|
|
# If a password is needed to sudo to root that password must be set here
|
|
#ansible_sudo_pass: password
|
|
|
|
# A list of insecure registrys you night need to define
|
|
insecure_registrys:
|
|
# - "gcr.io"
|
|
|
|
# If you need a proxy for the docker daemon define these here
|
|
#http_proxy: "http://proxy.example.com:3128"
|
|
#https_proxy: "http://proxy.example.com:3128"
|
|
|
|
# Kubernetes internal network for services.
|
|
# Kubernetes services will get fake IP addresses from this range.
|
|
# This range must not conflict with anything in your infrastructure. These
|
|
# addresses do not need to be routable and must just be an unused block of space.
|
|
kube_service_addresses: 10.254.0.0/16
|
|
|
|
# Flannel internal network (optional). When flannel is used, it will assign IP
|
|
# addresses from this range to individual pods.
|
|
# This network must be unused in your network infrastructure!
|
|
flannel_subnet: 172.16.0.0
|
|
|
|
# Flannel internal network total size (optional). This is the prefix of the
|
|
# entire flannel overlay network. So the entirety of 172.16.0.0/12 must be
|
|
# unused in your environment.
|
|
flannel_prefix: 12
|
|
|
|
# Flannel internal network (optional). This is the size allocation that flannel
|
|
# will give to each node on your network. With these defaults you should have
|
|
# room for 4096 nodes with 254 pods per node.
|
|
flannel_host_prefix: 24
|
|
|
|
# Turn to false to disable cluster monitoring with heapster and influxdb
|
|
cluster_monitoring: true
|
|
|
|
# Turn this varable to 'false' to disable whole DNS configuration.
|
|
dns_setup: true
|
|
# How many replicas in the Replication Controller
|
|
dns_replicas: 1
|
|
|
|
# Internal DNS domain name.
|
|
# This domain must not be used in your network. Services will be discoverable
|
|
# under <service-name>.<namespace>.<domainname>, e.g.
|
|
# myservice.default.kube.local
|
|
dns_domain: kube.local
|
|
|
|
# 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 above.
|
|
# And this is the IP address you should use as address of the DNS server
|
|
# in your containers.
|
|
dns_server: 10.254.0.10
|