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 |
Tomáš Levora | 3950556 | 2019-10-03 13:31:54 +0200 | [diff] [blame^] | 9 | rke_dns: {} |
Petr Ospalý | 8f83455 | 2019-08-22 17:33:07 +0200 | [diff] [blame] | 10 | rke_etcd: |
| 11 | # By default rke creates bind mount: |
| 12 | # /var/lib/etcd -> /var/lib/rancher/etcd |
| 13 | # These parameters provide means of modifying it: |
| 14 | # - custom bind mount |
| 15 | # - option to use volatile storage |
| 16 | |
| 17 | # Custom bind mount |
| 18 | # |
| 19 | # I did not find a proper way (in the docs) how to override the |
| 20 | # defaults so I just abuse the extra_* args for the rke etcd |
| 21 | # service. It means that it will create another mount point in the |
| 22 | # container and you should use different pathnames than default... |
| 23 | # |
| 24 | # The custom bind mount is by default disabled. |
| 25 | enabled_custom_etcd_storage: false |
| 26 | |
| 27 | # Applicated only if custom mount is enabled. |
| 28 | # Paths must be absolute (start with '/') |
| 29 | # |
| 30 | # Path on the kubernetes/etcd node |
| 31 | storage_path: /var/lib/etcd-custom |
| 32 | # Path inside the container where it is mounted. |
| 33 | storage_mountpoint: /var/lib/rancher/etcd-custom |
| 34 | |
| 35 | # On top of it (with or without custom mount) you can use tmpfs |
| 36 | # as a volatile storage. |
| 37 | # |
| 38 | # CAUTION: This will create temporary filesystem (in the memory) |
| 39 | # so if an etcd node will be poweroff then all etcd data will be |
| 40 | # lost!!! |
| 41 | # |
| 42 | # Don't use unless you don't care about your cluster! |
| 43 | # |
| 44 | # This is intended as an attempt to make deployment little bit |
| 45 | # more faster...by default it is disabled. |
| 46 | enabled_unsafe_volatile_storage: false |
| 47 | # Size of the volatile storage - tmpfs (this will eat your RAM) |
| 48 | tmpfs_size: 5G |
| 49 | |
Petr Ospalý | fe49ee9 | 2019-04-20 00:53:01 +0200 | [diff] [blame] | 50 | rke: |
Michal Zegan | 119f760 | 2019-04-23 16:34:58 +0200 | [diff] [blame] | 51 | # rke (rancher) images |
Tomáš Levora | 3950556 | 2019-10-03 13:31:54 +0200 | [diff] [blame^] | 52 | etcd: "rancher/coreos-etcd:v3.3.10-rancher1" |
| 53 | alpine: "rancher/rke-tools:v0.1.50" |
| 54 | nginx_proxy: "rancher/rke-tools:v0.1.50" |
| 55 | cert_downloader: "rancher/rke-tools:v0.1.50" |
| 56 | kubernetes_services_sidecar: "rancher/rke-tools:v0.1.50" |
| 57 | kubedns: "rancher/k8s-dns-kube-dns:1.15.0" |
| 58 | dnsmasq: "rancher/k8s-dns-dnsmasq-nanny:1.15.0" |
| 59 | kubedns_sidecar: "rancher/k8s-dns-sidecar:1.15.0" |
| 60 | kubedns_autoscaler: "rancher/cluster-proportional-autoscaler:1.3.0" |
| 61 | coredns: "rancher/coredns-coredns:1.3.1" |
| 62 | coredns_autoscaler: "rancher/cluster-proportional-autoscaler:1.3.0" |
| 63 | kubernetes: "rancher/hyperkube:v1.15.4-rancher1" |
| 64 | flannel: "rancher/coreos-flannel:v0.11.0-rancher1" |
| 65 | flannel_cni: "rancher/flannel-cni:v0.3.0-rancher5" |
| 66 | calico_node: "rancher/calico-node:v3.7.4" |
| 67 | calico_cni: "rancher/calico-cni:v3.7.4" |
| 68 | calico_controllers: "rancher/calico-kube-controllers:v3.7.4" |
| 69 | calico_ctl: "rancher/calico-ctl:v2.0.0" |
| 70 | canal_node: "rancher/calico-node:v3.7.4" |
| 71 | canal_cni: "rancher/calico-cni:v3.7.4" |
| 72 | canal_flannel: "rancher/coreos-flannel:v0.11.0" |
| 73 | weave_node: "weaveworks/weave-kube:2.5.2" |
| 74 | weave_cni: "weaveworks/weave-npc:2.5.2" |
| 75 | pod_infra_container: "rancher/pause:3.1" |
| 76 | ingress: "rancher/nginx-ingress-controller:nginx-0.25.1-rancher1" |
| 77 | ingress_backend: "rancher/nginx-ingress-controller-defaultbackend:1.5-rancher1" |
| 78 | metrics_server: "rancher/metrics-server:v0.3.3" |