Petr Ospalý | fe49ee9 | 2019-04-20 00:53:01 +0200 | [diff] [blame] | 1 | --- |
Tomáš Levora | f6bd937 | 2019-06-14 10:54:39 +0200 | [diff] [blame] | 2 | rke_binary: rke_linux-amd64 |
Petr Ospalý | fe49ee9 | 2019-04-20 00:53:01 +0200 | [diff] [blame] | 3 | rke_username: rke |
| 4 | rke_bin_dir: /usr/local/bin |
Michal Zegan | 119f760 | 2019-04-23 16:34:58 +0200 | [diff] [blame] | 5 | kube_config_dir: "{{ ansible_env.HOME }}/.kube" |
Petr Ospalý | fe49ee9 | 2019-04-20 00:53:01 +0200 | [diff] [blame] | 6 | cluster_config_dir: "{{ app_data_path }}/cluster" |
Petr Ospalý | 67acfb5 | 2019-04-20 05:25:23 +0200 | [diff] [blame] | 7 | # Whether dashboard is exposed. |
| 8 | rke_dashboard_exposed: true |
Petr Ospalý | 8f83455 | 2019-08-22 17:33:07 +0200 | [diff] [blame^] | 9 | rke_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ý | fe49ee9 | 2019-04-20 00:53:01 +0200 | [diff] [blame] | 49 | rke: |
Michal Zegan | 119f760 | 2019-04-23 16:34:58 +0200 | [diff] [blame] | 50 | # rke (rancher) images |
Petr Ospalý | fe49ee9 | 2019-04-20 00:53:01 +0200 | [diff] [blame] | 51 | 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 |