blob: d9c044b693ffab52006d312392a9ed202ceba67e [file] [log] [blame]
Petr Ospalýfe49ee92019-04-20 00:53:01 +02001---
Tomáš Levoraf6bd9372019-06-14 10:54:39 +02002rke_binary: rke_linux-amd64
Petr Ospalýfe49ee92019-04-20 00:53:01 +02003rke_username: rke
4rke_bin_dir: /usr/local/bin
Michal Zegan119f7602019-04-23 16:34:58 +02005kube_config_dir: "{{ ansible_env.HOME }}/.kube"
Petr Ospalýfe49ee92019-04-20 00:53:01 +02006cluster_config_dir: "{{ app_data_path }}/cluster"
Petr Ospalý67acfb52019-04-20 05:25:23 +02007# Whether dashboard is exposed.
8rke_dashboard_exposed: true
Petr Ospalý8f834552019-08-22 17:33:07 +02009rke_etcd:
10 # By default rke creates bind mount:
11 # /var/lib/etcd -> /var/lib/rancher/etcd
12 # These parameters provide means of modifying it:
13 # - custom bind mount
14 # - option to use volatile storage
15
16 # Custom bind mount
17 #
18 # I did not find a proper way (in the docs) how to override the
19 # defaults so I just abuse the extra_* args for the rke etcd
20 # service. It means that it will create another mount point in the
21 # container and you should use different pathnames than default...
22 #
23 # The custom bind mount is by default disabled.
24 enabled_custom_etcd_storage: false
25
26 # Applicated only if custom mount is enabled.
27 # Paths must be absolute (start with '/')
28 #
29 # Path on the kubernetes/etcd node
30 storage_path: /var/lib/etcd-custom
31 # Path inside the container where it is mounted.
32 storage_mountpoint: /var/lib/rancher/etcd-custom
33
34 # On top of it (with or without custom mount) you can use tmpfs
35 # as a volatile storage.
36 #
37 # CAUTION: This will create temporary filesystem (in the memory)
38 # so if an etcd node will be poweroff then all etcd data will be
39 # lost!!!
40 #
41 # Don't use unless you don't care about your cluster!
42 #
43 # This is intended as an attempt to make deployment little bit
44 # more faster...by default it is disabled.
45 enabled_unsafe_volatile_storage: false
46 # Size of the volatile storage - tmpfs (this will eat your RAM)
47 tmpfs_size: 5G
48
Petr Ospalýfe49ee92019-04-20 00:53:01 +020049rke:
Michal Zegan119f7602019-04-23 16:34:58 +020050 # rke (rancher) images
Petr Ospalýfe49ee92019-04-20 00:53:01 +020051 etcd: rancher/coreos-etcd:v3.2.24-rancher1
52 alpine: rancher/rke-tools:v0.1.27
53 nginx_proxy: rancher/rke-tools:v0.1.27
54 cert_downloader: rancher/rke-tools:v0.1.27
55 kubernetes_services_sidecar: rancher/rke-tools:v0.1.27
56 kubedns: rancher/k8s-dns-kube-dns:1.15.0
57 dnsmasq: rancher/k8s-dns-dnsmasq-nanny:1.15.0
58 kubedns_sidecar: rancher/k8s-dns-sidecar:1.15.0
59 kubedns_autoscaler: rancher/cluster-proportional-autoscaler:1.0.0
60 coredns: coredns/coredns:1.2.6
61 coredns_autoscaler: rancher/cluster-proportional-autoscaler:1.0.0
62 kubernetes: rancher/hyperkube:v1.13.5-rancher1
63 flannel: rancher/coreos-flannel:v0.10.0-rancher1
64 flannel_cni: rancher/flannel-cni:v0.3.0-rancher1
65 calico_node: rancher/calico-node:v3.4.0
66 calico_cni: rancher/calico-cni:v3.4.0
67 calico_controllers: ""
68 calico_ctl: rancher/calico-ctl:v2.0.0
69 canal_node: rancher/calico-node:v3.4.0
70 canal_cni: rancher/calico-cni:v3.4.0
71 canal_flannel: rancher/coreos-flannel:v0.10.0
72 weave_node: weaveworks/weave-kube:2.5.0
73 weave_cni: weaveworks/weave-npc:2.5.0
74 pod_infra_container: rancher/pause:3.1
75 ingress: rancher/nginx-ingress-controller:0.21.0-rancher3
76 ingress_backend: rancher/nginx-ingress-controller-defaultbackend:1.4-rancher1
77 metrics_server: rancher/metrics-server:v0.3.1