Hi! Helm 3 came out last week. Just wondering if there is an orb update planned for this. It looks like the current helm orb only supports helm 2
Hi, welcome to the forum
It looks like the Helm orb repo has an open issue for this and @stella is actively working on this: https://github.com/CircleCI-Public/helm-orb/issues/15
I would encourage you to follow along with that issue and add any comments that you feel might be helpful!
1 Like
This change seems to be merged. I can see this update here:
https://circleci.com/orbs/registry/orb/circleci/helm#commands-install-helm-client
However when I try to run with version v3.0.0 I get this error:
if which helm > /dev/null; then
echo "helm is already installed"
exit 0
fi
VERSION="v3.0.0"
if [ -n "${VERSION}" ]; then
set -- "$@" --version "${VERSION}"
fi
INSTALL_SCRIPT="https://raw.githubusercontent.com/helm/helm/master/scripts/get"
curl "${INSTALL_SCRIPT}" > get_helm.sh
chmod 700 get_helm.sh
./get_helm.sh "$@"
helm init --client-only
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 7164 100 7164 0 0 61433 0 --:--:-- --:--:-- --:--:-- 61758
Downloading https://get.helm.sh/helm-v3.0.0-linux-amd64.tar.gz
Preparing to install helm and tiller into /usr/local/bin
helm installed into /usr/local/bin/helm
info: tiller binary was not found in this release; skipping tiller installation
Run 'helm init' to configure helm.
Error: unknown flag: --client-only
Exited with code 1
CircleCI received exit code 1
Update, my bad I was still using v0.2.1 of the orb
1 Like
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.