Няма описание

1234567891011121314151617181920212223242526272829303132333435363738
  1. apiVersion: argoproj.io/v1alpha1
  2. kind: Application
  3. metadata:
  4. name: wordpress
  5. namespace: {{ .Values.spec.namespace }}
  6. finalizers:
  7. - resources-finalizer.argocd.argoproj.io
  8. spec:
  9. destination:
  10. namespace: wordpress
  11. name: {{ .Values.spec.destination.name }}
  12. project: {{ .Values.spec.project }}
  13. syncPolicy:
  14. automated:
  15. prune: true
  16. selfHeal: true
  17. source:
  18. chart: wiki
  19. repoURL: https://charts.js.wiki
  20. targetRevision: 2.2.0
  21. helm:
  22. releaseName: wiki
  23. values: |
  24. ingress:
  25. enabled: true
  26. className: ""
  27. annotations: {}
  28. cert-manager.io/cluster-issuer: "letsencrypt-prod"
  29. hosts:
  30. - host: wiki.kaisers.info
  31. paths:
  32. - path: "/"
  33. pathType: Prefix
  34. tls:
  35. - secretName: "wikijs-kaisers-info-tls"
  36. hosts:
  37. - "wiki.kaisers.info"