diff --git a/apps/okd/index.yaml b/apps/okd/index.yaml index b4bd73a..04e0415 100644 --- a/apps/okd/index.yaml +++ b/apps/okd/index.yaml @@ -6,6 +6,36 @@ metadata: name: okd description: null options: + app-group: + default: infra + examples: + - infra + type: string + issuer: + default: letsencrypt-prod + examples: + - letsencrypt-prod + type: string + ingress-class: + default: traefik + examples: + - traefik + type: string + cluster-admin: + default: false + examples: + - false + type: boolean + managed: + default: false + examples: + - false + type: boolean + namespaces: + default: [] + items: + type: string + type: array images: default: okd: @@ -45,50 +75,20 @@ options: type: string type: object type: object - namespaces: - default: [] - items: - type: string - type: array - sub-domain: - default: okd + domain-name: + default: your_company.com examples: - - okd + - your_company.com type: string domain: default: your-company examples: - your-company type: string - managed: - default: false + sub-domain: + default: okd examples: - - false - type: boolean - app-group: - default: infra - examples: - - infra - type: string - ingress-class: - default: traefik - examples: - - traefik - type: string - cluster-admin: - default: false - examples: - - false - type: boolean - domain-name: - default: your_company.com - examples: - - your_company.com - type: string - issuer: - default: letsencrypt-prod - examples: - - letsencrypt-prod + - okd type: string dependencies: - dist: null diff --git a/apps/okd/presentation.tf b/apps/okd/presentation.tf index 328abae..62f7174 100644 --- a/apps/okd/presentation.tf +++ b/apps/okd/presentation.tf @@ -2,7 +2,7 @@ locals { dns-name = "${var.sub-domain}.${var.domain-name}" dns-names = [local.dns-name] app-name = var.component == var.instance ? var.instance : format("%s-%s", var.component, var.instance) - icon = "static/assets/public/imgs/okd-favicon.png" + icon = "static/assets/okd-logo.svg" request_headers = { "Content-Type" = "application/json" Authorization = "Bearer ${data.kubernetes_secret_v1.authentik.data["AUTHENTIK_BOOTSTRAP_TOKEN"]}"