| 1234567891011121314151617181920212223242526272829303132333435363738 |
- apiVersion: argoproj.io/v1alpha1
- kind: Application
- metadata:
- name: wordpress
- namespace: {{ .Values.spec.namespace }}
- finalizers:
- - resources-finalizer.argocd.argoproj.io
- spec:
- destination:
- namespace: wordpress
- name: {{ .Values.spec.destination.name }}
- project: {{ .Values.spec.project }}
- syncPolicy:
- automated:
- prune: true
- selfHeal: true
- source:
- chart: wiki
- repoURL: https://charts.js.wiki
- targetRevision: 2.2.0
- helm:
- releaseName: wiki
- values: |
- ingress:
- enabled: true
- className: ""
- annotations: {}
- cert-manager.io/cluster-issuer: "letsencrypt-prod"
- hosts:
- - host: wiki.kaisers.info
- paths:
- - path: "/"
- pathType: Prefix
-
- tls:
- - secretName: "wikijs-kaisers-info-tls"
- hosts:
- - "wiki.kaisers.info"
|