Created
October 25, 2015 16:55
-
-
Save bketelsen/329c9c567ea93a8f6186 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
ansible_ssh_user: bketelsen | |
ansible_ssh_pubkey: "{{ lookup('file','~/.ssh/id_rsa.pub') }}" | |
# This value determines how kubernetes binaries, config files, and service | |
# files are loaded onto the target machines. The following are the only | |
# valid options: | |
# | |
# localBuild - requires make release to have been run to build local binaries | |
# packageManager - will install packages from your distribution using yum/dnf/apt | |
source_type: packageManager | |
# will be used as the Internal dns domain name if DNS is enabled. Services | |
# will be discoverable under <service-name>.<namespace>.svc.<domainname>, e.g. | |
# myservice.default.svc.cluster.local | |
cluster_name: kubernetes.local | |
# 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 | |
# Set to false to disable logging with elasticsearch | |
cluster_logging: false | |
# Turn to false to disable cluster monitoring with heapster and influxdb | |
cluster_monitoring: true | |
# Turn to false to disable the kube-ui addon for this cluster | |
kube-ui: true | |
# Turn this varable to 'false' to disable whole DNS configuration. | |
dns_setup: true | |
# How many replicas in the Replication Controller | |
dns_replicas: 1 | |
# There are other variable in roles/kubernetes/defaults/main.yml but changing | |
# them comes with a much higher risk to your cluster. So proceed over there | |
# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment