Incorrect gitlab-runner version
I've associated an EKS cluster with my GitLab root org successfully. When attempting to install `gitlab-runner` an error is received. ``` Something went wrong while installing GitLab Runner Operation failed. Check pod logs for install-runner for more details. ``` Logs show that helm is being told to install version `0.20.1`, which does not exist. ``` > kubectl logs install-runner -n gitlab-managed-apps + export 'HELM_HOST=localhost:44134' + helm init --client-only + tiller -listen localhost:44134 -alsologtostderr [main] 2020/08/28 21:03:04 Starting Tiller v2.16.9 (tls=false) [main] 2020/08/28 21:03:04 GRPC listening on localhost:44134 [main] 2020/08/28 21:03:04 Probes listening on :44135 [main] 2020/08/28 21:03:04 Storage driver is ConfigMap [main] 2020/08/28 21:03:04 Max history per release is 0 Creating /root/.helm Creating /root/.helm/repository Creating /root/.helm/repository/cache Creating /root/.helm/repository/local Creating /root/.helm/plugins Creating /root/.helm/starters Creating /root/.helm/cache/archive Creating /root/.helm/repository/repositories.yaml Adding stable repo with URL: https://kubernetes-charts.storage.googleapis.com Adding local repo with URL: http://127.0.0.1:8879/charts $HELM_HOME has been configured at /root/.helm. Not installing Tiller due to 'client-only' flag having been set + helm repo add runner https://charts.gitlab.io "runner" has been added to your repositories + helm repo update Hang tight while we grab the latest from your chart repositories... ...Skip local chart repository ...Successfully got an update from the "runner" chart repository ...Successfully got an update from the "stable" chart repository Update Complete. + helm upgrade runner runner/gitlab-runner --install --atomic --cleanup-on-fail --reset-values --version 0.20.1 --set 'rbac.create=true,rbac.enabled=true' --namespace gitlab-managed-apps -f /data/helm/runner/config/values.yaml Error: failed to download "runner/gitlab-runner" (hint: running `helm repo update` may help) ``` Helm search only shows version `0.20.0` available. ``` > helm search gitlab-runner NAME CHART VERSION APP VERSION DESCRIPTION runner/gitlab-runner 0.20.0 13.3.0 GitLab Runner ```
issue