Advertisement
k3NGuru

Untitled

Aug 27th, 2022
1,242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.51 KB | None | 0 0
  1. version: 0.21.0
  2.  
  3. repositories:
  4.  # Docs: https://docs.gitlab.com/ee/user/packages/helm_repository/
  5.   - url: {{ env "CI_API_V4" }}/projects/{{env "CI_PROJECT_ID" }}/packages/helm/stable`
  6.     username: gitlab-ci-token
  7.     password: {{ env "CI_JOB_TOKEN" }}
  8.  
  9. # General options
  10. .options: &options
  11.   wait: true
  12.   wait_for_jobs: true
  13.   force: false
  14.   timeout: 10m
  15.   atomic: false
  16.   max_history: 3
  17.   namespace: test
  18.   create_namespace: true
  19.  
  20. releases:
  21.   - name: nginx-1
  22.     chart: mychart
  23.     <<: *options
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement