This commit is contained in:
2023-10-23 13:47:16 +02:00
parent cd58b0dcc3
commit 63f4b3377c
4 changed files with 149 additions and 149 deletions

View File

@@ -6,6 +6,31 @@ metadata:
name: dataset-pg
description: null
options:
storage:
default: 8Gi
examples:
- 8Gi
type: string
sub-domain:
default: dataset-pg
examples:
- dataset-pg
type: string
ingress-class:
default: traefik
examples:
- traefik
type: string
replicas:
default: 1
examples:
- 1
type: integer
domain-name:
default: your_company.com
examples:
- your_company.com
type: string
extentions:
default:
pool:
@@ -112,16 +137,6 @@ options:
type: object
type: object
type: object
issuer:
default: letsencrypt-prod
examples:
- letsencrypt-prod
type: string
ingress-class:
default: traefik
examples:
- traefik
type: string
databases:
default: []
items:
@@ -131,21 +146,20 @@ options:
type: string
type: object
type: array
domain-name:
default: your_company.com
issuer:
default: letsencrypt-prod
examples:
- your_company.com
- letsencrypt-prod
type: string
sub-domain:
default: dataset-pg
examples:
- dataset-pg
type: string
replicas:
default: 1
examples:
- 1
type: integer
roles:
default: []
items:
properties:
name:
default: alt-account
type: string
type: object
type: array
backups:
default:
enable: false
@@ -200,20 +214,6 @@ options:
default: backup-settings
type: string
type: object
storage:
default: 8Gi
examples:
- 8Gi
type: string
roles:
default: []
items:
properties:
name:
default: alt-account
type: string
type: object
type: array
dependencies:
- dist: null
category: dbo

View File

@@ -4,13 +4,13 @@ locals {
})
prest-dns-name = "api.${local.dns-name}"
prest-service = {
"name" = "${var.instance}-postgrest"
"name" = "postgrest-${var.instance}"
"port" = {
"number" = 80
}
}
swagger-service = {
"name" = "${var.instance}-swagger"
"name" = "swagger-${var.instance}"
"port" = {
"number" = 80
}