Skip to content

Commit 988ce99

Browse files
committed
Set storage driver explictly in the crio.conf
crio.conf(5) says: storage_driver="" CRIO storage driver (default is "overlay") Note: overlay and overlay2 are the same driver
1 parent bd6d3e7 commit 988ce99

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deploy/iso/minikube-iso/package/crio-bin/crio-bin.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ define CRIO_BIN_INSTALL_TARGET_CMDS
6161
$(TARGET_DIR)/etc/containers/registries.conf
6262

6363
mkdir -p $(TARGET_DIR)/etc/sysconfig
64-
echo 'CRIO_OPTIONS="--storage-driver=overlay2 --log-level=debug"' > $(TARGET_DIR)/etc/sysconfig/crio
64+
echo 'CRIO_OPTIONS="--log-level=debug"' > $(TARGET_DIR)/etc/sysconfig/crio
6565
endef
6666

6767
define CRIO_BIN_INSTALL_INIT_SYSTEMD

deploy/iso/minikube-iso/package/crio-bin/crio.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ runroot = "/var/run/containers/storage"
1212

1313
# storage_driver select which storage driver is used to manage storage
1414
# of images and containers.
15-
storage_driver = ""
15+
storage_driver = "overlay"
1616

1717
# storage_option is used to pass an option to the storage driver.
1818
storage_option = [

0 commit comments

Comments
 (0)