暫無描述

gitea.yaml 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. apiVersion: argoproj.io/v1alpha1
  2. kind: Application
  3. metadata:
  4. name: "gitea"
  5. namespace: {{ .Values.spec.namespace }}
  6. finalizers:
  7. - resources-finalizer.argocd.argoproj.io
  8. spec:
  9. destination:
  10. namespace: "gitea"
  11. name: {{ .Values.spec.destination.name }}
  12. project: {{ .Values.spec.project }}
  13. syncPolicy:
  14. automated:
  15. prune: true
  16. selfHeal: true
  17. syncOptions:
  18. - CreateNamespace=true
  19. source:
  20. repoURL: "https://dl.gitea.io/charts"
  21. targetRevision: "5.0.8"
  22. chart: "gitea"
  23. helm:
  24. version: "v3"
  25. releaseName: "gitea"
  26. values: |
  27. ingress:
  28. enabled: "true"
  29. annotations:
  30. cert-manager.io/cluster-issuer: "letsencrypt-prod"
  31. hosts:
  32. - host: "newgit.kaisers.info"
  33. paths:
  34. - path: "/"
  35. pathType: "Prefix"
  36. tls:
  37. - secretName: "newgit-kaisers-info-tls"
  38. hosts:
  39. - "newgit.kaisers.info"
  40. persistence:
  41. size: 5Gi
  42. postgresql:
  43. persistence:
  44. size: 5Gi
  45. service:
  46. http:
  47. type: "ClusterIP"
  48. port: "3000"
  49. clusterIP:
  50. ssh:
  51. type: "ClusterIP"
  52. port: "22"
  53. clusterIP: