diff options
author | Christian Pointner <equinox@spreadspace.org> | 2020-06-30 13:38:37 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2020-06-30 13:38:37 +0200 |
commit | 4af66462fb1e8630aed482552322fa4ebfcd53b6 (patch) | |
tree | a0747b0d2836752964ce865170905b32cc95083c /inventory/host_vars | |
parent | resync preseed files (diff) |
split up standalone kubelet role into base and pod
Diffstat (limited to 'inventory/host_vars')
-rw-r--r-- | inventory/host_vars/ch-hroottest.yml | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/inventory/host_vars/ch-hroottest.yml b/inventory/host_vars/ch-hroottest.yml index f07198b1..7c08fe04 100644 --- a/inventory/host_vars/ch-hroottest.yml +++ b/inventory/host_vars/ch-hroottest.yml @@ -30,8 +30,26 @@ zfs_zpools: mountpoint: /srv/storage create_vdevs: mirror /dev/disk/by-id/ata-SAMSUNG_HD753LJ_S13UJ1LS801071-part3 /dev/disk/by-id/ata-SAMSUNG_HD753LJ_S13UJ1BQ802393-part3 -zfs_sanoid_modules: - storage/vm: - use_template: production - recursive: yes - process_children_only: yes +# zfs_sanoid_modules: +# storage/vm: +# use_template: production +# recursive: yes +# process_children_only: yes + +docker_zfs: + pool: storage + name: docker + properties: + quota: 15G + +kubelet_zfs: + pool: storage + name: kubelet + properties: + quota: 15G + +kubernetes_version: 1.18.5 +kubernetes_container_runtime: docker +kubernetes_standalone_max_pods: 15 +kubernetes_standalone_pod_cidr: 192.168.255.0/24 +kubernetes_standalone_cni_variant: with-portmap |