| 12345678910111213141516171819202122232425262728293031323334353637 |
- apiVersion: argoproj.io/v1alpha1
- kind: Application
- metadata:
- name: gitea
- namespace: gitea
- finalizers:
- - resources-finalizer.argocd.argoproj.io
- spec:
- destination:
- namespace: gitea
- name: {{ .Values.spec.destination.name }}
- project: {{ .Values.spec.project }}
- source:
- chart: gitea-charts/gitea
- repoURL: https://dl.gitea.io/charts
- targetRevision: 5.0.1
- helm:
- releaseName: gitea
- values: |
- ingress:
- enabled: true
- annotations: {}
- hosts:
- - host: newgit.kaisers.info
- paths:
- - path: /
- pathType: Prefix
-
- service:
- http:
- type: ClusterIP
- port: 3000
- clusterIP:
- ssh:
- type: ClusterIP
- port: 22
- clusterIP:
|