This commit is contained in:
2024-01-19 16:45:54 +01:00
parent 576737cdef
commit 88a73e2a2d
2 changed files with 27 additions and 27 deletions

View File

@@ -6,36 +6,21 @@ metadata:
name: gramo name: gramo
description: null description: null
options: options:
managed: issuer:
default: false default: letsencrypt-prod
examples: examples:
- false - letsencrypt-prod
type: boolean
cluster-admin:
default: false
examples:
- false
type: boolean
domain:
default: your-company
examples:
- your-company
type: string
app-group:
default: infra
examples:
- infra
type: string
domain-name:
default: your_company.com
examples:
- your_company.com
type: string type: string
namespaces: namespaces:
default: [] default: []
items: items:
type: string type: string
type: array type: array
app-group:
default: infra
examples:
- infra
type: string
images: images:
default: default:
gramo: gramo:
@@ -75,15 +60,30 @@ options:
type: string type: string
type: object type: object
type: object type: object
cluster-admin:
default: false
examples:
- false
type: boolean
domain-name:
default: your_company.com
examples:
- your_company.com
type: string
managed:
default: false
examples:
- false
type: boolean
sub-domain: sub-domain:
default: gramo default: gramo
examples: examples:
- gramo - gramo
type: string type: string
issuer: domain:
default: letsencrypt-prod default: your-company
examples: examples:
- letsencrypt-prod - your-company
type: string type: string
ingress-class: ingress-class:
default: traefik default: traefik

View File

@@ -8,7 +8,7 @@ locals {
Authorization = "Bearer ${data.kubernetes_secret_v1.authentik.data["AUTHENTIK_BOOTSTRAP_TOKEN"]}" Authorization = "Bearer ${data.kubernetes_secret_v1.authentik.data["AUTHENTIK_BOOTSTRAP_TOKEN"]}"
} }
service = { service = {
"name" = "${var.component}-${var.instance}" "name" = "${var.instance}-${var.component}"
"port" = { "port" = {
"number" = 80 "number" = 80
} }