File tree Expand file tree Collapse file tree 4 files changed +9
-0
lines changed
Expand file tree Collapse file tree 4 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ export LIMA_INSTALL_CA_CERTIFICATES=false
33export LIMA_INSTALL_CLOUD_INIT=false
44export LIMA_INSTALL_CNI_PLUGINS=false
55export LIMA_INSTALL_CNI_PLUGIN_FLANNEL=false
6+ export LIMA_INSTALL_CURL=false
67export LIMA_INSTALL_DOCKER=false
78export LIMA_INSTALL_K3S=false
89export LIMA_INSTALL_CRI_DOCKERD=false
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ LIMA_INSTALL_BINFMT_MISC=true
33LIMA_INSTALL_CA_CERTIFICATES=true
44LIMA_INSTALL_CNI_PLUGINS=true
55LIMA_INSTALL_CNI_PLUGIN_FLANNEL=true
6+ LIMA_INSTALL_CURL=true
67LIMA_INSTALL_DOCKER=true
78LIMA_INSTALL_CRI_DOCKERD=true
89LIMA_INSTALL_IPTABLES=true
Original file line number Diff line number Diff line change @@ -216,6 +216,10 @@ if [ "${LIMA_INSTALL_CNI_PLUGIN_FLANNEL}" == "true" ]; then
216216 ln -s " flannel-${ARCH} " " ${tmp} /usr/libexec/cni/flannel"
217217fi
218218
219+ if [ " ${LIMA_INSTALL_CURL} " == " true" ]; then
220+ echo " curl" >> " $tmp " /etc/apk/world
221+ fi
222+
219223if [ " ${LIMA_INSTALL_K3S} " == " true" ]; then
220224 echo " k3s" >> " $tmp " /etc/apk/world
221225 rc_add k3s default
Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ profile_lima() {
2626 if [ " ${LIMA_INSTALL_CNI_PLUGIN_FLANNEL} " == " true" ]; then
2727 apks=" $apks cni-plugin-flannel"
2828 fi
29+ if [ " ${LIMA_INSTALL_CURL} " == " true" ]; then
30+ apks=" $apks curl"
31+ fi
2932 if [ " ${LIMA_INSTALL_DOCKER} " == " true" ]; then
3033 apks=" $apks libseccomp runc containerd tini-static device-mapper-libs"
3134 apks=" $apks docker-engine docker-openrc docker-cli docker"
You can’t perform that action at this time.
0 commit comments