add openebs helm chart
This commit is contained in:
parent
bf179af733
commit
dcc8e49eb9
37
argo1/templates/openebs.yaml
Normal file
37
argo1/templates/openebs.yaml
Normal 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 }}
|
|
@ -27,3 +27,8 @@ vault-agent-injector:
|
|||
|
||||
nfs:
|
||||
enabled: false
|
||||
|
||||
openebs:
|
||||
enabled: false
|
||||
values: |
|
||||
# values.yaml for openebs here
|
||||
|
|
Loading…
Reference in New Issue
Block a user