mirror of
https://github.com/clearlinux/cloud-native-setup.git
synced 2026-08-19 05:27:26 +00:00
Setting the RUNNER to use crio (#208)
This change helps with setting up the RUNNER to use crio by default instead of using containerd. If the user wants to use containerd, they need to specify when running the setup_system script. Signed-off: Syed Ahsan <syed.ahsan.shamim.zaidi@intel.com>
This commit is contained in:
@@ -34,7 +34,9 @@ This script ensures the following
|
||||
* Customizes the system to ensure correct defaults are setup (IP Forwarding, Swap off,...)
|
||||
* Ensures all the dependencies are loaded on boot (kernel modules)
|
||||
|
||||
> NOTE: This step is done automatically if using vagrant.
|
||||
> NOTE: This step is done automatically if using vagrant. The [`setup_system.sh`](setup_system.sh)
|
||||
script uses the runtime specified in the `RUNNER` environment variable and defaults to `crio`. To use the
|
||||
`containerd` runtime, set the `RUNNER` environment variable to `containerd`.
|
||||
|
||||
### Configuration for high numbers of pods per node
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ HIGH_POD_COUNT=${HIGH_POD_COUNT:-""}
|
||||
# set no proxy
|
||||
ADD_NO_PROXY="10.244.0.0/16,10.96.0.0/12"
|
||||
ADD_NO_PROXY+=",$(hostname -I | sed 's/[[:space:]]/,/g')"
|
||||
: "${RUNNER:=containerd}"
|
||||
: "${RUNNER:=crio}"
|
||||
|
||||
# update os version
|
||||
function upate_os_version() {
|
||||
|
||||
Reference in New Issue
Block a user