Welcome to mirror list, hosted at ThFree Co, Russian Federation.

helm_install_package.yaml.erb « helm « package_managers « fixtures « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 786b0592153ff2d3237d3ad9c99232364ba4923f (plain)
1
2
3
4
5
6
7
8
9
10
11
pull:
  image: alpine:3
  script:
    - apk add helm --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing
    - helm repo add --username <%= username %> --password <%= access_token %> gitlab_qa ${CI_API_V4_URL}/projects/<%= package_project.id %>/packages/helm/stable
    - helm repo update
    - helm pull gitlab_qa/<%= package_name %>
  only:
    - <%= client_project.default_branch %>
  tags:
    - runner-for-<%=client_project.group.name %>