gitlab CI/CD install gitlab runner

1. Why do I need to install gitlab runner?

Extreme Fox GitLab Runner

Jifox GitLab Runner is an application that runs jobs in the pipeline and works with Jifox GitLab CI/CD.

To put it bluntly, it is an agent you deploy.


2. How to install?

1. Introduce the deployment of github runner through helm

2. helm add warehouse

helm repo add gitlab https://charts.gitlab.io

3. Pull chars

helm pull gitlab/gitlab-runner -- Pull the latest chars

4. Edit the pulled vim values.yaml

The runnerRegistrationToken here is copied here in the gitlab server.

 

 4. Install chars

helm install helm-runer -n helm-runer -f ./values.yaml .
-- The installation name is helm-runer and the namespace is helm-runer. The values.yaml file used by the current directory is ./values.yaml at the end . To use the chars in this directory.

5. After deployment, enter the git-lab server to view

 

Guess you like

Origin blog.csdn.net/weixin_46510209/article/details/132069467