Skip to content

Commit e2a1f57

Browse files
committed
Add basic registries.conf for docker.io registry
1 parent 7301c89 commit e2a1f57

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

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

+3
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ define CRIO_BIN_INSTALL_TARGET_CMDS
5656
$(INSTALL) -Dm644 \
5757
$(BR2_EXTERNAL_MINIKUBE_PATH)/package/crio-bin/policy.json \
5858
$(TARGET_DIR)/etc/containers/policy.json
59+
$(INSTALL) -Dm644 \
60+
$(BR2_EXTERNAL_MINIKUBE_PATH)/package/crio-bin/registries.conf \
61+
$(TARGET_DIR)/etc/containers/registries.conf
5962

6063
mkdir -p $(TARGET_DIR)/etc/sysconfig
6164
echo 'CRIO_OPTIONS="--storage-driver=overlay2 --log-level=debug"' > $(TARGET_DIR)/etc/sysconfig/crio
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[registries.search]
2+
registries = ['docker.io']
3+
4+
[registries.insecure]
5+
registries = []

0 commit comments

Comments
 (0)