add openebs helm chart

This commit is contained in:
James Andariese 2023-04-26 19:27:56 -05:00
parent bf179af733
commit dcc8e49eb9
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,37 @@
# {{ if (index .Values "openebs").enabled }}
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: "{{ .Release.Name }}-openebs"
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
source:
chart: "openebs"
repoURL: "https://openebs.github.io/charts"
targetRevision: "3.5.0"
helm:
values: |-
{{ (index .Values "openebs").values | nindent 8 }}
# the next line preserves the release name.
# this is optional but recommended for singleton services.
releaseName: "openebs"
destination:
server: "https://kubernetes.default.svc"
namespace: "openebs"
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
retry:
limit: 10
backoff:
duration: 5s
factor: 2
maxDuration: 3m0s
# {{- end }}

View File

@ -27,3 +27,8 @@ vault-agent-injector:
nfs:
enabled: false
openebs:
enabled: false
values: |
# values.yaml for openebs here