This commit is contained in:
2023-08-27 18:29:11 +02:00
parent 71b9da9a00
commit 47a7e14cbd
2 changed files with 28 additions and 28 deletions

View File

@@ -6,15 +6,20 @@ metadata:
name: wildduck name: wildduck
description: null description: null
options: options:
additional-domains: ingress-class:
default: [] default: traefik
items:
type: string
type: array
domain:
default: your-company
examples: examples:
- your-company - traefik
type: string
issuer:
default: letsencrypt-prod
examples:
- letsencrypt-prod
type: string
sub-domain:
default: mail
examples:
- mail
type: string type: string
images: images:
default: default:
@@ -225,16 +230,6 @@ options:
type: string type: string
type: object type: object
type: object type: object
sub-domain:
default: mail
examples:
- mail
type: string
ingress-class:
default: traefik
examples:
- traefik
type: string
backups: backups:
default: default:
enable: false enable: false
@@ -265,15 +260,15 @@ options:
default: backup-settings default: backup-settings
type: string type: string
type: object type: object
domain-name: additional-domains:
default: your_company.com default: []
items:
type: string
type: array
domain:
default: your-company
examples: examples:
- your_company.com - your-company
type: string
issuer:
default: letsencrypt-prod
examples:
- letsencrypt-prod
type: string type: string
redis: redis:
default: default:
@@ -308,6 +303,11 @@ options:
default: 2Gi default: 2Gi
type: string type: string
type: object type: object
domain-name:
default: your_company.com
examples:
- your_company.com
type: string
dependencies: dependencies:
- dist: null - dist: null
category: dbo category: dbo

View File

@@ -35,7 +35,7 @@ resource "kubectl_manifest" "scimgateway_deploy" {
imagePullPolicy: "${var.images.scimgateway.pullPolicy}" imagePullPolicy: "${var.images.scimgateway.pullPolicy}"
ports: ports:
- name: http - name: http
containerPort: 8000 containerPort: 8880
protocol: TCP protocol: TCP
livenessProbe: livenessProbe:
httpGet: httpGet:
@@ -53,7 +53,7 @@ resource "kubectl_manifest" "scimgateway_deploy" {
- name: "LOG_LEVEL" - name: "LOG_LEVEL"
value: "info" value: "info"
- name: "PORT" - name: "PORT"
value: "8000" value: "8880"
- name: "WILDDUCK_DOMAIN" - name: "WILDDUCK_DOMAIN"
value: "${var.domain-name}" value: "${var.domain-name}"
- name: "WILDDUCK_API" - name: "WILDDUCK_API"