From 32c6f07b3ecd2509bd9760264a1603bd2da23f48 Mon Sep 17 00:00:00 2001 From: Kenneth Bingham Date: Thu, 1 Feb 2024 22:14:09 -0500 Subject: [PATCH] bump ziti cli version; install xargs in zrok container image for bootstrapping 'admin create account' in zrok chart; --- docker/images/zrok/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docker/images/zrok/Dockerfile b/docker/images/zrok/Dockerfile index 501a2300c..f83038ab2 100644 --- a/docker/images/zrok/Dockerfile +++ b/docker/images/zrok/Dockerfile @@ -1,5 +1,5 @@ # this builds docker.io/openziti/zrok -ARG ZITI_CLI_TAG="0.31.2" +ARG ZITI_CLI_TAG="0.32.1" ARG ZITI_CLI_IMAGE="docker.io/openziti/ziti-cli" # this builds docker.io/openziti/ziti-controller FROM ${ZITI_CLI_IMAGE}:${ZITI_CLI_TAG} @@ -20,8 +20,9 @@ LABEL name="openziti/zrok" \ USER root -### install packages (jq introduced in source image in next release 0.30.6) -RUN INSTALL_PKGS="jq" && \ +### install packages: findutils provides xargs which is used by the zrok Helm chart's controller bootstrapping script to +#create the default account enable token +RUN INSTALL_PKGS="findutils" && \ microdnf -y update --setopt=install_weak_deps=0 --setopt=tsflags=nodocs && \ microdnf -y install --setopt=install_weak_deps=0 --setopt=tsflags=nodocs ${INSTALL_PKGS}