This commit is contained in:
2023-08-12 12:04:22 +02:00
parent 30bf0874ae
commit 8ff7906740
8 changed files with 552 additions and 552 deletions

View File

@@ -9,10 +9,20 @@ metadata:
A painless self-hosted Git service.
Gitea is a community managed lightweight code hosting solution written in Go. It is published under the MIT license.
options:
timezone:
default: Europe/Paris
volume:
default:
size: 10Gi
examples:
- Europe/Paris
- size: 10Gi
properties:
size:
default: 10Gi
type: string
type: object
issuer:
default: letsencrypt-prod
examples:
- letsencrypt-prod
type: string
load-balancer:
default:
@@ -24,16 +34,31 @@ options:
default: ''
type: string
type: object
issuer:
default: letsencrypt-prod
examples:
- letsencrypt-prod
type: string
domain:
default: your-company
examples:
- your-company
type: string
disable-registration:
default: true
examples:
- true
type: boolean
domain-name:
default: your_company.com
examples:
- your_company.com
type: string
ssh-port:
default: 2222
examples:
- 2222
type: integer
default-branch:
default: main
examples:
- main
type: string
webhook:
default:
allowed-hosts: private
@@ -49,51 +74,21 @@ options:
default: false
type: boolean
type: object
sub-domain:
default: git
theme:
default: gitea-modern
examples:
- git
- gitea-modern
type: string
postgres:
default:
replicas: 1
storage: 10Gi
version: '14'
examples:
- replicas: 1
storage: 10Gi
version: '14'
properties:
replicas:
default: 1
type: integer
storage:
default: 10Gi
type: string
version:
default: '14'
type: string
type: object
release:
default: 8.3.0
examples:
- 8.3.0
type: string
disable-registration:
default: true
sub-domain:
default: git
examples:
- true
type: boolean
ingress-class:
default: traefik
examples:
- traefik
- git
type: string
replicas:
default: 1
examples:
- 1
type: integer
backups:
default:
enable: false
@@ -195,21 +190,51 @@ options:
default: backup-settings
type: string
type: object
volume:
admin:
default:
size: 10Gi
email: git-admin@git.your_company.com
name: gitea_admin
examples:
- size: 10Gi
- email: git-admin@git.your_company.com
name: gitea_admin
properties:
size:
default: 10Gi
email:
default: git-admin@git.your_company.com
type: string
name:
default: gitea_admin
type: string
type: object
default-branch:
default: main
postgres:
default:
replicas: 1
storage: 10Gi
version: '14'
examples:
- main
- replicas: 1
storage: 10Gi
version: '14'
properties:
replicas:
default: 1
type: integer
storage:
default: 10Gi
type: string
version:
default: '14'
type: string
type: object
timezone:
default: Europe/Paris
examples:
- Europe/Paris
type: string
replicas:
default: 1
examples:
- 1
type: integer
push-create:
default:
org: 'true'
@@ -230,26 +255,11 @@ options:
default: 'true'
type: string
type: object
admin:
default:
email: git-admin@git.your_company.com
name: gitea_admin
ingress-class:
default: traefik
examples:
- email: git-admin@git.your_company.com
name: gitea_admin
properties:
email:
default: git-admin@git.your_company.com
type: string
name:
default: gitea_admin
type: string
type: object
ssh-port:
default: 2222
examples:
- 2222
type: integer
- traefik
type: string
images:
default:
gitea:
@@ -313,16 +323,6 @@ options:
type: string
type: object
type: object
theme:
default: gitea-modern
examples:
- gitea-modern
type: string
domain-name:
default: your_company.com
examples:
- your_company.com
type: string
dependencies:
- dist: null
category: share

View File

@@ -2,7 +2,7 @@ locals {
pg-labels = merge(local.common-labels, {
"app.kubernetes.io/component" = "pg"
})
backup-def = var.backups.enable ? {
backup-def = {
retentionPolicy = var.backups.retention.db
barmanObjectStore = {
destinationPath = "s3://${var.instance}-${var.namespace}/"
@@ -18,7 +18,7 @@ locals {
}
}
}
} : {}
}
}
resource "kubectl_manifest" "prj_pg" {
@@ -39,7 +39,7 @@ resource "kubectl_manifest" "prj_pg" {
initdb:
database: "${var.component}"
owner: "${var.component}"
backup: ${jsonencode(local.backup-def)}
backup: ${jsonencode(var.backups.enable?local.backup-def:{})}
EOF
}