ci: change from forgejo to gitea
This commit is contained in:
parent
a48bd2ad7c
commit
dec470327b
9 changed files with 53 additions and 83 deletions
41
infrastructure/gitea/helmrelease.yaml
Normal file
41
infrastructure/gitea/helmrelease.yaml
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
apiVersion: helm.toolkit.fluxcd.io/v2beta2
|
||||
kind: HelmRelease
|
||||
metadata:
|
||||
name: gitea
|
||||
namespace: gitea
|
||||
spec:
|
||||
releaseName: gitea
|
||||
interval: 10m
|
||||
chart:
|
||||
spec:
|
||||
chart: gitea
|
||||
version: "10.x.x" # aktuelle Chart-Version prüfen!
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: gitea-charts
|
||||
namespace: flux-system
|
||||
values:
|
||||
persistence:
|
||||
enabled: true
|
||||
storageClass: longhorn
|
||||
size: 10Gi
|
||||
ingress:
|
||||
enabled: true
|
||||
className: traefik
|
||||
hosts:
|
||||
- host: gitea.local
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
service:
|
||||
http:
|
||||
type: ClusterIP
|
||||
port: 3000
|
||||
ssh:
|
||||
type: ClusterIP
|
||||
port: 22
|
||||
gitea:
|
||||
admin:
|
||||
username: giteaadmin
|
||||
password: changeme
|
||||
email: patrykhegenberg@gmail.com
|
||||
Loading…
Add table
Add a link
Reference in a new issue