How to install gitlab-runner in Azure Kubernetes Service?

Viewed 533

I'm trying to install Gitlab Runner inside my cluster in Azure Kubernetes Service (AKS), but I have 2 errors:

  1. Helm Tiller doesn't appear in the application list of Gitlab CI: Most of tutorials tell that it has to be installed, but today it is not even proposed as you can see here: enter image description here

  2. When I install gitlab-runner from this list, I have a message error like "Something went wrong while installing Gitlab Runner Operation failed. Check pod logs for install-runner for more details" So when I check the logs, I have this: enter image description here

The 2 last lines there is an error, some answers tell that I need to change the repo with Helm command, so I do that from the Azure CLI bash in the portal, but I still have the same error, I execute the code like this :

helm repo rm stable
helm repo add stable https://charts.helm.sh/stable

And then I update, do I need to give more arguments in commands?

1 Answers
Related