This commit is contained in:
2024-01-26 12:59:14 +01:00
parent ebbf704f85
commit 43a783eb91
11 changed files with 401 additions and 402 deletions

View File

@@ -249,7 +249,7 @@ module "directus-oauth2" {
namespace = var.namespace
labels = local.directus-labels
dns_name = local.directus-dns_name
redirect-path = "auth/login/VYNIL/callback"
redirect_path = "auth/login/VYNIL/callback"
providers = {
kubernetes = kubernetes
kubectl = kubectl

View File

@@ -6,6 +6,91 @@ metadata:
name: dataset-pg
description: null
options:
domain_name:
default: your_company.com
examples:
- your_company.com
type: string
images:
default:
postgresql:
registry: ghcr.io
repository: cloudnative-pg/postgresql
tag: 15.3
examples:
- postgresql:
registry: ghcr.io
repository: cloudnative-pg/postgresql
tag: 15.3
properties:
postgresql:
default:
registry: ghcr.io
repository: cloudnative-pg/postgresql
tag: 15.3
properties:
registry:
default: ghcr.io
type: string
repository:
default: cloudnative-pg/postgresql
type: string
tag:
default: 15.3
type: number
type: object
type: object
postgres:
default:
replicas: 1
examples:
- replicas: 1
properties:
replicas:
default: 1
type: integer
type: object
app_group:
default: api
examples:
- api
type: string
roles:
default: []
items:
properties:
name:
default: alt-account
type: string
type: object
type: array
storage:
default:
postgres:
size: 10Gi
examples:
- postgres:
size: 10Gi
properties:
postgres:
default:
size: 10Gi
properties:
size:
default: 10Gi
type: string
type: object
type: object
sub-domain:
default: dataset-pg
examples:
- dataset-pg
type: string
ingress_class:
default: traefik
examples:
- traefik
type: string
extentions:
default:
directus:
@@ -192,41 +277,11 @@ options:
examples:
- letsencrypt-prod
type: string
domain_name:
default: your_company.com
examples:
- your_company.com
type: string
app_group:
default: api
examples:
- api
type: string
sub-domain:
default: dataset-pg
examples:
- dataset-pg
type: string
postgres:
default:
replicas: 1
examples:
- replicas: 1
properties:
replicas:
default: 1
type: integer
type: object
domain:
default: your-company
examples:
- your-company
type: string
ingress_class:
default: traefik
examples:
- traefik
type: string
backups:
default:
enable: false
@@ -290,61 +345,6 @@ options:
type: string
type: object
type: array
storage:
default:
postgres:
size: 10Gi
examples:
- postgres:
size: 10Gi
properties:
postgres:
default:
size: 10Gi
properties:
size:
default: 10Gi
type: string
type: object
type: object
roles:
default: []
items:
properties:
name:
default: alt-account
type: string
type: object
type: array
images:
default:
postgresql:
registry: ghcr.io
repository: cloudnative-pg/postgresql
tag: 15.3
examples:
- postgresql:
registry: ghcr.io
repository: cloudnative-pg/postgresql
tag: 15.3
properties:
postgresql:
default:
registry: ghcr.io
repository: cloudnative-pg/postgresql
tag: 15.3
properties:
registry:
default: ghcr.io
type: string
repository:
default: cloudnative-pg/postgresql
type: string
tag:
default: 15.3
type: number
type: object
type: object
dependencies:
- dist: null
category: dbo

View File

@@ -159,7 +159,6 @@ module "postgrest-ingress" {
middlewares = []
sub_paths = ["ui",""]
services = [local.swagger-service, local.prest-service]
services = []
providers = {
kubectl = kubectl
}