fix and add new k9s plugins, and cert-manager cli #184
Annotations
1 error
build
buildx failed with: ERROR: failed to solve: process "/bin/sh -c installBinary() { printf \"\\n=> Add $1 CLI\\n\" ; curl -sSLo /usr/local/bin/$2 \"$3\" ; } && installZip() { printf \"\\n=> Add $1 CLI\\n\" ; curl -sSL \"$3\" | gunzip > /usr/local/bin/$2 ; } && installTar() { printf \"\\n=> Add $1 CLI\\n\" ; curl -sSL \"$3\" | tar -x -C /tmp && mv /tmp/$4 /usr/local/bin/$2 ; } && installTargz() { printf \"\\n=> Add $1 CLI\\n\" ; curl -sSL \"$3\" | tar -xz -C /tmp && mv /tmp/$4 /usr/local/bin/$2 ; } && addCompletion() { printf \"\\n=> Add $1 CLI completion\\n\" ; chmod 755 /usr/local/bin/$2 ; /usr/local/bin/$2 $3 > /etc/bash_completion.d/$2 | true ; } && printf '\\n=====================================================\\n Install system packages\\n=====================================================\\n' && apt-get update && apt-get install -y --no-install-recommends apt-utils dialog && apt-get install -y --no-install-recommends ${INIT_PACKAGES} ${TOOLS_PACKAGES} ${NET_PACKAGES} ${DEV_PACKAGES} ${RUBY_PACKAGES} && locale-gen en_US.UTF-8 && printf '\\n=====================================================\\n Install ruby tools\\n=====================================================\\n' && curl -sSL https://rvm.io/mpapis.asc | gpg --import - && curl -sSL https://rvm.io/pkuczynski.asc | gpg --import - && curl -sSL https://get.rvm.io | bash -s stable && /bin/bash -l -c \"source /etc/profile.d/rvm.sh ; rvm install ${RUBY_VERSION}\" && /bin/bash -l -c \"gem install bundler -v ${RUBY_BUNDLER_VERSION} --no-document\" && /bin/bash -l -c \"gem install bosh-gen -v ${BOSH_GEN_VERSION} --no-document\" && /bin/bash -l -c \"gem install cf-uaac -v ${CF_UAAC_VERSION} --no-document\" && /bin/bash -l -c \"gem install mdless --no-document\" && /bin/bash -l -c \"rvm cleanup all\" && printf '\\n=====================================================\\n Setup account, ssh, supervisor and system banner\\n=====================================================\\n' && echo \"root:$(date +%s | sha256sum | base64 | head -c 32 ; echo)\" | chpasswd && useradd -m -g users -G sudo,rvm -s /bin/bash bosh && echo \"bosh ALL=(ALL) NOPASSWD:ALL\" > /etc/sudoers.d/bosh && echo \"bosh:$(date +%s | sha256sum | base64 | head -c 32 ; echo)\" | chpasswd && mkdir -p /var/run/sshd /var/log/supervisor /data/shared && sed -i 's@session\\s*required\\s*pam_loginuid.so@session optional pam_loginuid.so@g' /etc/pam.d/sshd && sed -i 's/^PermitRootLogin .*/PermitRootLogin no/g' /etc/ssh/sshd_config && sed -i 's/^ChallengeResponseAuthentication .*/ChallengeResponseAuthentication no/g' /etc/ssh/sshd_config && sed -i 's/^PubkeyAuthentication .*/PubkeyAuthentication yes/g' /etc/ssh/sshd_config && sed -i 's/^.*PasswordAuthentication yes.*/PasswordAuthentication no/g' /etc/ssh/sshd_config && sed -i 's/.*\\[supervisord\\].*/&\\nnodaemon=true\\nloglevel=debug/' /etc/supervisor/supervisord.conf && sed -i 's/^#Upstream http some.*/upstream http system-internet-http-proxy.internal.paas:3128 \".openshiftapps.com\"/' /etc/tinyproxy/tinyproxy.conf && sed -i 's/^ConnectPort 443/#ConnectPort 443/' /etc/tinyproxy/tinyproxy.conf && sed -i 's/^ConnectPort 563/#ConnectPort 563/' /etc/tinyproxy/tinyproxy.conf && printf '\\nYour are logged into an ubuntu docker tools container :' > /etc/motd && printf '\\n- \"tools\" command display available tools.' >> /etc/motd && printf '\\n- \"/data\" is the only persistant volume (do not save data on other fs).\\n\\n' >> /etc/motd && chmod 644 /etc/motd && printf '\\n=====================================================\\n Install clis and tools\\n=====================================================\\n' && installZip \"ARGO\" \"argo\" \"https://github.com/argoproj/argo-workflows/releases/download/v${ARGO_VERSION}/argo-linux-${OS_ARCH_AMD}.gz\" && addCompletion \"ARGO\" \"argo\" \"completion bash\" && installTar \"BBR\" \"bbr\" \"https://github.com/cloudfoundry-incubator/bosh-backup-and-restore/releases/download/v${
|