diff --git a/apps/gramo/index.yaml b/apps/gramo/index.yaml index ecd9901..673222d 100644 --- a/apps/gramo/index.yaml +++ b/apps/gramo/index.yaml @@ -6,51 +6,26 @@ metadata: name: gramo description: null options: - managed: - default: false + app-group: + default: infra examples: - - false - type: boolean - cluster-admin: - default: false - examples: - - false - type: boolean - namespaces: - default: [] - items: - type: string - type: array - sub-domain: - default: gramo - examples: - - gramo - type: string - domain: - default: your-company - examples: - - your-company - type: string - issuer: - default: letsencrypt-prod - examples: - - letsencrypt-prod - type: string - ingress-class: - default: traefik - examples: - - traefik + - infra type: string domain-name: default: your_company.com examples: - your_company.com type: string - app-group: - default: infra + domain: + default: your-company examples: - - infra + - your-company type: string + managed: + default: false + examples: + - false + type: boolean images: default: gramo: @@ -90,6 +65,31 @@ options: type: string type: object type: object + cluster-admin: + default: false + examples: + - false + type: boolean + issuer: + default: letsencrypt-prod + examples: + - letsencrypt-prod + type: string + ingress-class: + default: traefik + examples: + - traefik + type: string + sub-domain: + default: gramo + examples: + - gramo + type: string + namespaces: + default: [] + items: + type: string + type: array dependencies: - dist: null category: share diff --git a/apps/gramo/presentation.tf b/apps/gramo/presentation.tf index b7e3b95..00ad9c1 100644 --- a/apps/gramo/presentation.tf +++ b/apps/gramo/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/gramo-logo.svg" + icon = "icon.svg" request_headers = { "Content-Type" = "application/json" Authorization = "Bearer ${data.kubernetes_secret_v1.authentik.data["AUTHENTIK_BOOTSTRAP_TOKEN"]}"