33 lines
757 B
YAML
33 lines
757 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: nextcloud
|
|
namespace: argocd
|
|
spec:
|
|
destination:
|
|
namespace: nextcloud
|
|
server: https://kubernetes.default.svc
|
|
project: default
|
|
source:
|
|
chart: nextcloud
|
|
helm:
|
|
parameters:
|
|
- name: nextcloud.host
|
|
value: nc.martyn.berlin
|
|
- name: ingress.enabled
|
|
value: "true"
|
|
values: |-
|
|
ingress:
|
|
tls:
|
|
- hosts:
|
|
- nc.martyn.berlin
|
|
secretName: nc-tls
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt
|
|
className: nginx
|
|
repoURL: https://nextcloud.github.io/helm/
|
|
targetRevision: 6.6.10
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|