fix
This commit is contained in:
@@ -6,11 +6,11 @@ metadata:
|
|||||||
name: gramo
|
name: gramo
|
||||||
description: null
|
description: null
|
||||||
options:
|
options:
|
||||||
issuer:
|
managed:
|
||||||
default: letsencrypt-prod
|
default: false
|
||||||
examples:
|
examples:
|
||||||
- letsencrypt-prod
|
- false
|
||||||
type: string
|
type: boolean
|
||||||
namespaces:
|
namespaces:
|
||||||
default: []
|
default: []
|
||||||
items:
|
items:
|
||||||
@@ -21,6 +21,16 @@ options:
|
|||||||
examples:
|
examples:
|
||||||
- infra
|
- infra
|
||||||
type: string
|
type: string
|
||||||
|
ingress-class:
|
||||||
|
default: traefik
|
||||||
|
examples:
|
||||||
|
- traefik
|
||||||
|
type: string
|
||||||
|
cluster-admin:
|
||||||
|
default: false
|
||||||
|
examples:
|
||||||
|
- false
|
||||||
|
type: boolean
|
||||||
images:
|
images:
|
||||||
default:
|
default:
|
||||||
gramo:
|
gramo:
|
||||||
@@ -60,21 +70,16 @@ options:
|
|||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
type: object
|
type: object
|
||||||
cluster-admin:
|
issuer:
|
||||||
default: false
|
default: letsencrypt-prod
|
||||||
examples:
|
examples:
|
||||||
- false
|
- letsencrypt-prod
|
||||||
type: boolean
|
type: string
|
||||||
domain-name:
|
domain-name:
|
||||||
default: your_company.com
|
default: your_company.com
|
||||||
examples:
|
examples:
|
||||||
- your_company.com
|
- your_company.com
|
||||||
type: string
|
type: string
|
||||||
managed:
|
|
||||||
default: false
|
|
||||||
examples:
|
|
||||||
- false
|
|
||||||
type: boolean
|
|
||||||
sub-domain:
|
sub-domain:
|
||||||
default: gramo
|
default: gramo
|
||||||
examples:
|
examples:
|
||||||
@@ -85,11 +90,6 @@ options:
|
|||||||
examples:
|
examples:
|
||||||
- your-company
|
- your-company
|
||||||
type: string
|
type: string
|
||||||
ingress-class:
|
|
||||||
default: traefik
|
|
||||||
examples:
|
|
||||||
- traefik
|
|
||||||
type: string
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- dist: null
|
- dist: null
|
||||||
category: share
|
category: share
|
||||||
|
|||||||
@@ -77,7 +77,10 @@ resource "kubectl_manifest" "gramo_clusterrole" {
|
|||||||
labels: ${jsonencode(local.common-labels)}
|
labels: ${jsonencode(local.common-labels)}
|
||||||
rules:
|
rules:
|
||||||
- apiGroups: [""]
|
- apiGroups: [""]
|
||||||
resources: ["namespaces"]
|
resources: ["namespaces","customresourcedefinitions"]
|
||||||
|
verbs: ["get","list"]
|
||||||
|
- apiGroups: ["apiextensions.k8s.io"]
|
||||||
|
resources: ["customresourcedefinitions"]
|
||||||
resourceNames: ${jsonencode(local.sorted-namespaces)}
|
resourceNames: ${jsonencode(local.sorted-namespaces)}
|
||||||
verbs: ["get"]
|
verbs: ["get"]
|
||||||
- apiGroups: [""]
|
- apiGroups: [""]
|
||||||
|
|||||||
Reference in New Issue
Block a user