Created
February 9, 2022 16:25
-
-
Save nivogt/e2e3e2b6cd3284728b04bf9181e5628e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Helm Repositories | |
# Non standard Helm Chart repositories have to be registered | |
# Each repository must have 'url', 'type' and 'name' fields | |
# | |
--- | |
apiVersion: v1 | |
kind: Secret | |
metadata: | |
name: prometheus-helm-repo | |
namespace: argocd | |
labels: | |
argocd.argoproj.io/secret-type: repository | |
stringData: | |
name: prometheus-argocd | |
url: https://prometheus-community.github.io/helm-charts | |
type: helm | |
--- | |
apiVersion: v1 | |
kind: Secret | |
metadata: | |
name: grafana-helm-repo | |
namespace: argocd | |
labels: | |
argocd.argoproj.io/secret-type: repository | |
stringData: | |
name: grafana-argocd | |
url: https://grafana.github.io/helm-charts | |
type: helm | |
--- | |
apiVersion: v1 | |
kind: Secret | |
metadata: | |
name: crossplane-helm-repo | |
namespace: argocd | |
labels: | |
argocd.argoproj.io/secret-type: repository | |
stringData: | |
name: crossplane-argocd | |
url: https://charts.crossplane.io/stable | |
type: helm | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment