| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- apiVersion: argoproj.io/v1alpha1
- kind: Application
- metadata:
- name: "gitea"
- namespace: {{ .Values.spec.namespace }}
- finalizers:
- - resources-finalizer.argocd.argoproj.io
- spec:
- destination:
- namespace: "gitea"
- name: {{ .Values.spec.destination.name }}
- project: {{ .Values.spec.project }}
- syncPolicy:
- automated:
- prune: true
- selfHeal: true
- syncOptions:
- - CreateNamespace=true
- source:
- repoURL: "https://dl.gitea.io/charts"
- targetRevision: "5.0.9"
- chart: "gitea"
- helm:
- version: "v3"
- releaseName: "gitea"
- values: |
- ingress:
- enabled: "true"
- annotations:
- cert-manager.io/cluster-issuer: "letsencrypt-prod"
- hosts:
- - host: "newgit.kaisers.info"
- paths:
- - path: "/"
- pathType: "Prefix"
- tls:
- - secretName: "newgit-kaisers-info-tls"
- hosts:
- - "newgit.kaisers.info"
-
- service:
- http:
- type: "ClusterIP"
- port: "3000"
- clusterIP:
- ssh:
- type: "ClusterIP"
- port: "22"
- clusterIP:
-
- # gitea:
- # oauth:
- # - name: 'MyAwesomeGiteaOAuth'
- # provider: 'openidConnect'
- # key: 'hello'
- # secret: 'world'
- # autoDiscoverUrl: 'https://gitea.example.com/.well-known/openid-configuration'
- # #useCustomUrls:
- # #customAuthUrl:
- # #customTokenUrl:
- # #customProfileUrl:
- # #customEmailUrl:
|