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.

329 lines
14 KiB

  1. ---
  2. ## Required for bootstrap-os/preinstall/download roles and setting facts
  3. # Valid bootstrap options (required): ubuntu, coreos, centos, none
  4. bootstrap_os: none
  5. # Use proxycommand if bastion host is in group all
  6. # This change obseletes editing ansible.cfg file depending on bastion existance
  7. ansible_ssh_common_args: "{% if 'bastion' in groups['all'] %} -o ProxyCommand='ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -W %h:%p {{ ansible_user }}@{{hostvars['bastion']['ansible_host']}} {% if ansible_ssh_private_key_file is defined %}-i {{ ansible_ssh_private_key_file }}{% endif %} ' {% endif %}"
  8. kube_api_anonymous_auth: false
  9. # Default value, but will be set to true automatically if detected
  10. is_atomic: false
  11. ## Change this to use another Kubernetes version, e.g. a current beta release
  12. kube_version: v1.9.3
  13. ## Kube Proxy mode One of ['iptables','ipvs']
  14. kube_proxy_mode: iptables
  15. # Set to true to allow pre-checks to fail and continue deployment
  16. ignore_assert_errors: false
  17. # Directory where the binaries will be installed
  18. bin_dir: /usr/local/bin
  19. docker_bin_dir: /usr/bin
  20. etcd_data_dir: /var/lib/etcd
  21. # Where the binaries will be downloaded.
  22. # Note: ensure that you've enough disk space (about 1G)
  23. local_release_dir: "/tmp/releases"
  24. # Random shifts for retrying failed ops like pushing/downloading
  25. retry_stagger: 5
  26. # DNS configuration.
  27. # Kubernetes cluster name, also will be used as DNS domain
  28. cluster_name: cluster.local
  29. # Subdomains of DNS domain to be resolved via /etc/resolv.conf for hostnet pods
  30. ndots: 2
  31. # Can be dnsmasq_kubedns, kubedns, manual or none
  32. dns_mode: kubedns
  33. # Should be set to a cluster IP if using a custom cluster DNS
  34. # manual_dns_server: 10.x.x.x
  35. # Can be docker_dns, host_resolvconf or none
  36. resolvconf_mode: docker_dns
  37. # Deploy netchecker app to verify DNS resolve as an HTTP service
  38. deploy_netchecker: false
  39. # Ip address of the kubernetes skydns service
  40. skydns_server: "{{ kube_service_addresses|ipaddr('net')|ipaddr(3)|ipaddr('address') }}"
  41. skydns_server_secondary: "{{ kube_service_addresses|ipaddr('net')|ipaddr(4)|ipaddr('address') }}"
  42. dnsmasq_dns_server: "{{ kube_service_addresses|ipaddr('net')|ipaddr(2)|ipaddr('address') }}"
  43. dns_domain: "{{ cluster_name }}"
  44. # Kubernetes configuration dirs and system namespace.
  45. # Those are where all the additional config stuff goes
  46. # the kubernetes normally puts in /srv/kubernets.
  47. # This puts them in a sane location and namespace.
  48. # Editting those values will almost surely break something.
  49. kube_config_dir: /etc/kubernetes
  50. kube_script_dir: "{{ bin_dir }}/kubernetes-scripts"
  51. kube_manifest_dir: "{{ kube_config_dir }}/manifests"
  52. system_namespace: kube-system
  53. # This is where all the cert scripts and certs will be located
  54. kube_cert_dir: "{{ kube_config_dir }}/ssl"
  55. # This is where all of the bearer tokens will be stored
  56. kube_token_dir: "{{ kube_config_dir }}/tokens"
  57. # This is where to save basic auth file
  58. kube_users_dir: "{{ kube_config_dir }}/users"
  59. # This is the group that the cert creation scripts chgrp the
  60. # cert files to. Not really changable...
  61. kube_cert_group: kube-cert
  62. # Cluster Loglevel configuration
  63. kube_log_level: 2
  64. # Users to create for basic auth in Kubernetes API via HTTP
  65. kube_api_pwd: "changeme"
  66. kube_users:
  67. kube:
  68. pass: "{{kube_api_pwd}}"
  69. role: admin
  70. # Choose network plugin (cilium, calico, weave or flannel)
  71. # Can also be set to 'cloud', which lets the cloud provider setup appropriate routing
  72. kube_network_plugin: calico
  73. # Determines if calico-rr group exists
  74. peer_with_calico_rr: "{{ 'calico-rr' in groups and groups['calico-rr']|length > 0 }}"
  75. # Kubernetes internal network for services, unused block of space.
  76. kube_service_addresses: 10.233.0.0/18
  77. # internal network. When used, it will assign IP
  78. # addresses from this range to individual pods.
  79. # This network must be unused in your network infrastructure!
  80. kube_pods_subnet: 10.233.64.0/18
  81. # internal network node size allocation (optional). This is the size allocated
  82. # to each node on your network. With these defaults you should have
  83. # room for 64 nodes with 254 pods per node.
  84. # Example: Up to 256 nodes, 100 pods per node (/16 network):
  85. # - kube_service_addresses: 10.233.0.0/17
  86. # - kube_pods_subnet: 10.233.128.0/17
  87. # - kube_network_node_prefix: 25
  88. # Example: Up to 4096 nodes, 100 pods per node (/12 network):
  89. # - kube_service_addresses: 10.192.0.0/13
  90. # - kube_pods_subnet: 10.200.0.0/13
  91. # - kube_network_node_prefix: 25
  92. kube_network_node_prefix: 24
  93. # The virtual cluster IP, real host IPs and ports the API Server will be
  94. # listening on.
  95. # NOTE: loadbalancer_apiserver_localhost somewhat alters the final API enpdoint
  96. # access IP value (automatically evaluated below)
  97. kube_apiserver_ip: "{{ kube_service_addresses|ipaddr('net')|ipaddr(1)|ipaddr('address') }}"
  98. kube_apiserver_bind_address: 0.0.0.0
  99. # https
  100. kube_apiserver_port: 6443
  101. # http
  102. kube_apiserver_insecure_bind_address: 127.0.0.1
  103. kube_apiserver_insecure_port: 8080
  104. # Aggregator
  105. kube_api_aggregator_routing: true
  106. # Path used to store Docker data
  107. docker_daemon_graph: "/var/lib/docker"
  108. # Docker log options
  109. # Rotate container stderr/stdout logs at 50m and keep last 5
  110. docker_log_opts: "--log-opt max-size=50m --log-opt max-file=5"
  111. ## A string of extra options to pass to the docker daemon.
  112. ## This string should be exactly as you wish it to appear.
  113. ## An obvious use case is allowing insecure-registry access
  114. ## to self hosted registries like so:
  115. docker_options: "--insecure-registry={{ kube_service_addresses }} --graph={{ docker_daemon_graph }} {{ docker_log_opts }}"
  116. # Settings for containerized control plane (etcd/kubelet/secrets)
  117. etcd_deployment_type: docker
  118. kubelet_deployment_type: docker
  119. cert_management: script
  120. vault_deployment_type: docker
  121. helm_deployment_type: host
  122. # Enable kubeadm deployment (experimental)
  123. kubeadm_enabled: false
  124. # Make a copy of kubeconfig on the host that runs Ansible in GITDIR/artifacts
  125. kubeconfig_localhost: false
  126. # Download kubectl onto the host that runs Ansible in GITDIR/artifacts
  127. kubectl_localhost: false
  128. # K8s image pull policy (imagePullPolicy)
  129. k8s_image_pull_policy: IfNotPresent
  130. # Kubernetes dashboard
  131. # RBAC required. see docs/getting-started.md for access details.
  132. dashboard_enabled: true
  133. # Addons which can be enabled
  134. efk_enabled: false
  135. helm_enabled: false
  136. istio_enabled: false
  137. registry_enabled: false
  138. enable_network_policy: false
  139. local_volume_provisioner_enabled: "{{ local_volumes_enabled | default('false') }}"
  140. persistent_volumes_enabled: false
  141. cephfs_provisioner_enabled: false
  142. ingress_nginx_enabled: false
  143. ## When OpenStack is used, Cinder version can be explicitly specified if autodetection fails (Fixed in 1.9: https://github.com/kubernetes/kubernetes/issues/50461)
  144. # openstack_blockstorage_version: "v1/v2/auto (default)"
  145. ## When OpenStack is used, if LBaaSv2 is available you can enable it with the following 2 variables.
  146. openstack_lbaas_enabled: false
  147. # openstack_lbaas_subnet_id: "Neutron subnet ID (not network ID) to create LBaaS VIP"
  148. ## To enable automatic floating ip provisioning, specify a subnet.
  149. # openstack_lbaas_floating_network_id: "Neutron network ID (not subnet ID) to get floating IP from, disabled by default"
  150. ## Override default LBaaS behavior
  151. # openstack_lbaas_use_octavia: False
  152. # openstack_lbaas_method: "ROUND_ROBIN"
  153. # openstack_lbaas_provider: "haproxy"
  154. openstack_lbaas_create_monitor: "yes"
  155. openstack_lbaas_monitor_delay: "1m"
  156. openstack_lbaas_monitor_timeout: "30s"
  157. openstack_lbaas_monitor_max_retries: "3"
  158. ## List of authorization modes that must be configured for
  159. ## the k8s cluster. Only 'AlwaysAllow', 'AlwaysDeny', 'Node' and
  160. ## 'RBAC' modes are tested. Order is important.
  161. authorization_modes: ['Node', 'RBAC']
  162. rbac_enabled: "{{ 'RBAC' in authorization_modes or kubeadm_enabled }}"
  163. # When enabled, API bearer tokens (including service account tokens) can be used to authenticate to the kubelet’s HTTPS endpoint
  164. kubelet_authentication_token_webhook: false
  165. # When enabled, access to the kubelet API requires authorization by delegation to the API server
  166. kubelet_authorization_mode_webhook: false
  167. ## List of key=value pairs that describe feature gates for
  168. ## the k8s cluster.
  169. kube_feature_gates:
  170. - "Initializers={{ istio_enabled | string }}"
  171. - "PersistentLocalVolumes={{ local_volume_provisioner_enabled | string }}"
  172. - "VolumeScheduling={{ local_volume_provisioner_enabled | string }}"
  173. - "MountPropagation={{ local_volume_provisioner_enabled | string }}"
  174. # Vault data dirs.
  175. vault_base_dir: /etc/vault
  176. vault_cert_dir: "{{ vault_base_dir }}/ssl"
  177. vault_config_dir: "{{ vault_base_dir }}/config"
  178. vault_roles_dir: "{{ vault_base_dir }}/roles"
  179. vault_secrets_dir: "{{ vault_base_dir }}/secrets"
  180. ## Running on top of openstack vms with cinder enabled may lead to unschedulable pods due to NoVolumeZoneConflict restriction in kube-scheduler.
  181. ## See https://github.com/kubernetes-incubator/kubespray/issues/2141
  182. ## Set this variable to true to get rid of this issue
  183. volume_cross_zone_attachment: false
  184. # weave's network password for encryption
  185. # if null then no network encryption
  186. # you can use --extra-vars to pass the password in command line
  187. weave_password: EnterPasswordHere
  188. # Weave uses consensus mode by default
  189. # Enabling seed mode allow to dynamically add or remove hosts
  190. # https://www.weave.works/docs/net/latest/ipam/
  191. weave_mode_seed: false
  192. # This two variable are automatically changed by the weave's role in group_vars/k8s-cluster.yml.
  193. # Do not manually change these values
  194. weave_seed: uninitialized
  195. weave_peers: uninitialized
  196. ## Set no_proxy to all assigned cluster IPs and hostnames
  197. no_proxy: >-
  198. {%- if loadbalancer_apiserver is defined -%}
  199. {{ apiserver_loadbalancer_domain_name| default('') }},
  200. {{ loadbalancer_apiserver.address | default('') }},
  201. {%- endif -%}
  202. {%- for item in (groups['k8s-cluster'] + groups['etcd'] + groups['calico-rr']|default([]))|unique -%}
  203. {{ hostvars[item]['access_ip'] | default(hostvars[item]['ip'] | default(hostvars[item]['ansible_default_ipv4']['address'])) }},
  204. {%- if (item != hostvars[item]['ansible_hostname']) -%}
  205. {{ hostvars[item]['ansible_hostname'] }},
  206. {{ hostvars[item]['ansible_hostname'] }}.{{ dns_domain }},
  207. {%- endif -%}
  208. {{ item }},{{ item }}.{{ dns_domain }},
  209. {%- endfor -%}
  210. 127.0.0.1,localhost
  211. proxy_env:
  212. http_proxy: "{{ http_proxy| default ('') }}"
  213. https_proxy: "{{ https_proxy| default ('') }}"
  214. no_proxy: "{{ no_proxy }}"
  215. # Vars for pointing to kubernetes api endpoints
  216. is_kube_master: "{{ inventory_hostname in groups['kube-master'] }}"
  217. kube_apiserver_count: "{{ groups['kube-master'] | length }}"
  218. kube_apiserver_address: "{{ ip | default(ansible_default_ipv4['address']) }}"
  219. kube_apiserver_access_address: "{{ access_ip | default(kube_apiserver_address) }}"
  220. first_kube_master: "{{ hostvars[groups['kube-master'][0]]['access_ip'] | default(hostvars[groups['kube-master'][0]]['ip'] | default(hostvars[groups['kube-master'][0]]['ansible_default_ipv4']['address'])) }}"
  221. loadbalancer_apiserver_localhost: "{{ loadbalancer_apiserver is not defined }}"
  222. # applied if only external loadbalancer_apiserver is defined, otherwise ignored
  223. apiserver_loadbalancer_domain_name: "lb-apiserver.kubernetes.local"
  224. kube_apiserver_endpoint: |-
  225. {% if not is_kube_master and loadbalancer_apiserver_localhost -%}
  226. https://localhost:{{ nginx_kube_apiserver_port|default(kube_apiserver_port) }}
  227. {%- elif is_kube_master -%}
  228. https://{{ kube_apiserver_bind_address | regex_replace('0\.0\.0\.0','127.0.0.1') }}:{{ kube_apiserver_port }}
  229. {%- else -%}
  230. {%- if loadbalancer_apiserver is defined and loadbalancer_apiserver.port is defined -%}
  231. https://{{ apiserver_loadbalancer_domain_name|default('lb-apiserver.kubernetes.local') }}:{{ loadbalancer_apiserver.port|default(kube_apiserver_port) }}
  232. {%- else -%}
  233. https://{{ first_kube_master }}:{{ kube_apiserver_port }}
  234. {%- endif -%}
  235. {%- endif %}
  236. kube_apiserver_insecure_endpoint: >-
  237. http://{{ kube_apiserver_insecure_bind_address | regex_replace('0\.0\.0\.0','127.0.0.1') }}:{{ kube_apiserver_insecure_port }}
  238. kube_apiserver_client_cert: |-
  239. {% if kubeadm_enabled -%}
  240. {{ kube_cert_dir }}/ca.crt
  241. {%- else -%}
  242. {{ kube_cert_dir }}/apiserver.pem
  243. {%- endif %}
  244. kube_apiserver_client_key: |-
  245. {% if kubeadm_enabled -%}
  246. {{ kube_cert_dir }}/ca.key
  247. {%- else -%}
  248. {{ kube_cert_dir }}/apiserver-key.pem
  249. {%- endif %}
  250. # Set to true to deploy etcd-events cluster
  251. etcd_events_cluster_setup: false
  252. # Vars for pointing to etcd endpoints
  253. is_etcd_master: "{{ inventory_hostname in groups['etcd'] }}"
  254. etcd_address: "{{ ip | default(ansible_default_ipv4['address']) }}"
  255. etcd_access_address: "{{ access_ip | default(etcd_address) }}"
  256. etcd_peer_url: "https://{{ etcd_access_address }}:2380"
  257. etcd_client_url: "https://{{ etcd_access_address }}:2379"
  258. etcd_events_peer_url: "https://{{ etcd_access_address }}:2382"
  259. etcd_events_client_url: "https://{{ etcd_access_address }}:2381"
  260. etcd_access_addresses: |-
  261. {% for item in groups['etcd'] -%}
  262. https://{{ hostvars[item]['access_ip'] | default(hostvars[item]['ip'] | default(hostvars[item]['ansible_default_ipv4']['address'])) }}:2379{% if not loop.last %},{% endif %}
  263. {%- endfor %}
  264. etcd_events_access_addresses: |-
  265. {% for item in groups['etcd'] -%}
  266. https://{{ hostvars[item]['access_ip'] | default(hostvars[item]['ip'] | default(hostvars[item]['ansible_default_ipv4']['address'])) }}:2381{% if not loop.last %},{% endif %}
  267. {%- endfor %}
  268. etcd_member_name: |-
  269. {% for host in groups['etcd'] %}
  270. {% if inventory_hostname == host %}{{"etcd"+loop.index|string }}{% endif %}
  271. {% endfor %}
  272. etcd_peer_addresses: |-
  273. {% for item in groups['etcd'] -%}
  274. {{ "etcd"+loop.index|string }}=https://{{ hostvars[item].access_ip | default(hostvars[item].ip | default(hostvars[item].ansible_default_ipv4['address'])) }}:2380{% if not loop.last %},{% endif %}
  275. {%- endfor %}
  276. etcd_events_peer_addresses: |-
  277. {% for item in groups['etcd'] -%}
  278. {{ "etcd"+loop.index|string }}-events=https://{{ hostvars[item].access_ip | default(hostvars[item].ip | default(hostvars[item].ansible_default_ipv4['address'])) }}:2382{% if not loop.last %},{% endif %}
  279. {%- endfor %}