Advertisement
k3NGuru

Untitled

Aug 27th, 2022
1,271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.67 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: https://gitlab.com/api/v4/projects/{{ env "CI_PROJECT_ID" }}/packages/helm/stable
  6.     name: helmwave
  7.     username: {{ env "CI_REGISTRY_USER" }}
  8.     password: {{ env "CI_REGISTRY_PASSWORD" }}
  9.  
  10. # General options
  11. .options: &options
  12.   wait: true
  13.   wait_for_jobs: true
  14.   force: false
  15.   timeout: 10m
  16.   atomic: false
  17.   max_history: 3
  18.   namespace: test
  19.   create_namespace: true
  20.  
  21. releases:
  22.   - name: nginx-1
  23.     chart: mychart
  24.     <<: *options
  25.  
  26.   - name: nginx-2
  27.     chart: mychart
  28.     <<: *options
  29.  
  30.   - name: nginx-3
  31.     chart: mychart
  32.     <<: *options
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement