GHP publish
This commit is contained in:
8
roles/helm-repos/defaults/main.yaml
Normal file
8
roles/helm-repos/defaults/main.yaml
Normal file
@ -0,0 +1,8 @@
|
||||
helm_repos:
|
||||
- { name: 'ghp', url: 'https://charts.ghp.0xace.cc' }
|
||||
- { name: 'jetstack', url: 'https://charts.jetstack.io' }
|
||||
- { name: 'bitnami', url: 'https://charts.bitnami.com/bitnami' }
|
||||
- { name: 'drone', url: 'https://charts.drone.io' }
|
||||
- { name: 'ingress-nginx', url: 'https://kubernetes.github.io/ingress-nginx' }
|
||||
- { name: 'stable', url: 'https://charts.helm.sh/stable' }
|
||||
- { name: 'nextcloud', url: 'https://nextcloud.github.io/helm' }
|
6
roles/helm-repos/tasks/main.yaml
Normal file
6
roles/helm-repos/tasks/main.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
- name: Add Helm repositories
|
||||
community.kubernetes.helm_repository:
|
||||
name: "{{ item.name }}"
|
||||
repo_url: "{{ item.url }}"
|
||||
loop:
|
||||
"{{ helm_repos }}"
|
Reference in New Issue
Block a user