mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-12 18:40:03 -03:30
* fix upgrade of crio on fcos - update documents * install conntrack required by kube-proxy - like commit 48c41bcbe7a428584f4919f4404d09a0b7381a53 * enable fedora modular repo for crio * allow to override crio configuration - set cgroup manager same to kubelet_cgroup_driver if defined - path of seccomp_profile depends on distribution * allow to override crio configuration - fix path for ubuntu * allow to override crio configuration - fix cni path for fcos
29 lines
925 B
YAML
29 lines
925 B
YAML
---
|
|
## CentOS/RHEL specific variables
|
|
# Install epel repo on Centos/RHEL
|
|
centos_epel_enabled: false
|
|
# Use the fastestmirror yum plugin
|
|
centos_fastestmirror_enabled: false
|
|
|
|
## CoreOS specific variables
|
|
# Disable locksmithd or leave it in its current state
|
|
coreos_locksmithd_disable: false
|
|
|
|
## Oracle Linux specific variables
|
|
# Install public repo on Oracle Linux
|
|
use_oracle_public_repo: true
|
|
|
|
fedora_coreos_packages:
|
|
- python
|
|
- libselinux-python3
|
|
- dbus-tools # because of networkManager reload bug (https://bugzilla.redhat.com/show_bug.cgi?id=1745659)
|
|
- ethtool # required in kubeadm preflight phase for verifying the environment
|
|
- ipset # required in kubeadm preflight phase for verifying the environment
|
|
- conntrack-tools # required by kube-proxy
|
|
|
|
## General
|
|
# Set the hostname to inventory_hostname
|
|
override_system_hostname: true
|
|
|
|
is_fedora_coreos: false
|