Advertisement
k3NGuru

Untitled

Aug 27th, 2022 (edited)
1,070
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.75 KB | None | 0 0
  1. $ mkdir -p $HOME/.kube
  2. $ echo "$K8S_CONFIG" > $HOME/.kube/config
  3. $ chown $(id -u):$(id -g) $HOME/.kube/config
  4. $ helmwave yml
  5. [🙃 aka INFO]: 📄 YML is ready!
  6.     build plan with next command: helmwave build -f helmwave.yml
  7. $ cat helmwave.yml
  8. version: 0.21.0
  9. repositories:
  10.   # Docs: https://docs.gitlab.com/ee/user/packages/helm_repository/
  11.   - url: /projects/$ID/packages/helm/stable`
  12.     username: gitlab-ci-token
  13.     password: [MASKED]
  14. # General options
  15. .options: &options
  16.   wait: true
  17.   wait_for_jobs: true
  18.   force: false
  19.   timeout: 10m
  20.   atomic: false
  21.   max_history: 3
  22.   namespace: test
  23.   create_namespace: true
  24. releases:
  25.   - name: nginx-1
  26.     chart: mychart
  27.     <<: *options$ helmwave build
  28. [🤬 aka FATAL]: repository name is empty
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement