This commit is contained in:
2023-09-21 12:57:04 +02:00
parent 6069a5236d
commit 9297b1fb43
2 changed files with 108 additions and 108 deletions

View File

@@ -9,76 +9,61 @@ metadata:
A painless self-hosted Git service. 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. Gitea is a community managed lightweight code hosting solution written in Go. It is published under the MIT license.
options: options:
domain-name: admin:
default: your_company.com
examples:
- your_company.com
type: string
ingress-class:
default: traefik
examples:
- traefik
type: string
ssh-port:
default: 2222
examples:
- 2222
type: integer
webhook:
default: default:
allowed-hosts: private email: git-admin@git.your_company.com
skip-tls-verify: false name: gitea_admin
examples: examples:
- allowed-hosts: private - email: git-admin@git.your_company.com
skip-tls-verify: false name: gitea_admin
properties: properties:
allowed-hosts: email:
default: private default: git-admin@git.your_company.com
type: string type: string
skip-tls-verify: name:
default: false default: gitea_admin
type: boolean
type: object
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: string
type: object type: object
issuer: default-branch:
default: letsencrypt-prod default: main
examples: examples:
- letsencrypt-prod - main
type: string
timezone:
default: Europe/Paris
examples:
- Europe/Paris
type: string
domain:
default: your-company
examples:
- your-company
type: string type: string
sub-domain: sub-domain:
default: git default: git
examples: examples:
- git - git
type: string type: string
release:
default: 8.3.0
examples:
- 8.3.0
type: string
domain:
default: your-company
examples:
- your-company
type: string
replicas:
default: 1
examples:
- 1
type: integer
ssh-port:
default: 2222
examples:
- 2222
type: integer
ingress-class:
default: traefik
examples:
- traefik
type: string
disable-registration:
default: true
examples:
- true
type: boolean
push-create: push-create:
default: default:
org: 'true' org: 'true'
@@ -99,21 +84,6 @@ options:
default: 'true' default: 'true'
type: string type: string
type: object type: object
admin:
default:
email: git-admin@git.your_company.com
name: gitea_admin
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
images: images:
default: default:
gitea: gitea:
@@ -177,31 +147,31 @@ options:
type: string type: string
type: object type: object
type: object type: object
webhook:
default:
allowed-hosts: private
skip-tls-verify: false
examples:
- allowed-hosts: private
skip-tls-verify: false
properties:
allowed-hosts:
default: private
type: string
skip-tls-verify:
default: false
type: boolean
type: object
issuer:
default: letsencrypt-prod
examples:
- letsencrypt-prod
type: string
app-group: app-group:
default: dev default: dev
examples: examples:
- dev - dev
type: string type: string
theme:
default: gitea-modern
examples:
- gitea-modern
type: string
volume:
default:
size: 10Gi
examples:
- size: 10Gi
properties:
size:
default: 10Gi
type: string
type: object
release:
default: 8.3.0
examples:
- 8.3.0
type: string
load-balancer: load-balancer:
default: default:
ip: '' ip: ''
@@ -212,16 +182,6 @@ options:
default: '' default: ''
type: string type: string
type: object type: object
disable-registration:
default: true
examples:
- true
type: boolean
default-branch:
default: main
examples:
- main
type: string
backups: backups:
default: default:
enable: false enable: false
@@ -328,11 +288,51 @@ options:
default: false default: false
type: boolean type: boolean
type: object type: object
replicas: postgres:
default: 1 default:
replicas: 1
storage: 10Gi
version: '14'
examples: examples:
- 1 - replicas: 1
type: integer 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
domain-name:
default: your_company.com
examples:
- your_company.com
type: string
theme:
default: gitea-modern
examples:
- gitea-modern
type: string
volume:
default:
size: 10Gi
examples:
- size: 10Gi
properties:
size:
default: 10Gi
type: string
type: object
dependencies: dependencies:
- dist: null - dist: null
category: share category: share

View File

@@ -27,8 +27,8 @@ resource "kubectl_manifest" "gitea_ldap" {
data: data:
bindDn: "cn=${var.component}-ldapsearch,${local.base-user-dn}" bindDn: "cn=${var.component}-ldapsearch,${local.base-user-dn}"
user-search-base: "${local.base-user-dn}" user-search-base: "${local.base-user-dn}"
user-filter: "(&(|(memberof=cn=gitea_admin,${local.base-group-dn})(memberof=cn=gitea_users,${local.base-group-dn}))(|(cn=%[1]s)(mail=%[1]s)))" user-filter: "(&(|(memberof=cn=${format("admin-%s", local.app-name)},${local.base-group-dn})(memberof=cn=${local.main-group},${local.base-group-dn}))(|(cn=%[1]s)(mail=%[1]s)))"
admin-filter: "(memberof=cn=gitea_admin,${local.base-group-dn})" admin-filter: "(memberof=cn=${format("admin-%s", local.app-name)},${local.base-group-dn})"
endpoint: "ak-outpost-ldap.${var.domain}-auth.svc" endpoint: "ak-outpost-ldap.${var.domain}-auth.svc"
fields: fields:
- fieldName: "bindPassword" - fieldName: "bindPassword"