我想安装GitLab runner版本10.8.7,以便它与我正在使用的GitLab安装的版本相匹配。我尝试使用以下命令找出helm chart的版本:
helm search repo -l gitlab/gitlab-runner
NAME CHART VERSION APP VERSION DESCRIPTION
gitlab/gitlab-runner 0.15.0 12.9.0 GitLab Runner
...
gitlab/gitlab-runner 0.1.45 11.7.0 GitLab Runner
gitlab/gitlab-runner 0.1.44 GitLab Runner
gitlab/gitlab-runner 0.1.43 GitLab Runner
gitlab/gitlab-runner 0.1.42 GitLab Runner
gitlab/gitlab-runner 0.1.41 GitLab Runner
...
gitlab/gitlab-runner 0.1.14 GitLab Runner
gitlab/gitlab-runner 0.1.13 GitLab Runner但是似乎只有图表版本0.15到0.14.5指定了实际的GitLab版本(12.9.0到11.7.0)。
那么,哪个图表版本对应于应用程序版本GitLab 10.8.7?
发布于 2020-03-25 15:33:17
我安装了图表版本0.1.34,似乎运行的是gitlab runner 11.3.0
cat gitlab-runner-group-values.yml | helm install --namespace gitlabrunner -f - --version 0.1.34 gitlab-runner-tdh gitlab/gitlab-runner之前的图表版本0.1.33跳转到gitlab runner 10.3.0
据我所知,目前还没有适用于GitLab runner v10.8.0 2018-05-22的舵图版本
官方changelog仅支持v0.1.45 (2019-01-22),对应GitLab runner 11.7.0
https://stackoverflow.com/questions/60843660
复制相似问题