fix
This commit is contained in:
@@ -1,24 +1,55 @@
|
|||||||
locals {
|
locals {
|
||||||
annotations = {
|
annotations = {
|
||||||
"vynil.solidite.fr/meta" = var.component
|
"vynil.solidite.fr/meta" = var.component
|
||||||
"vynil.solidite.fr/name" = "${var.domain}-devspaces"
|
"vynil.solidite.fr/name" = var.namespace
|
||||||
"vynil.solidite.fr/domain" = var.domain_name
|
}
|
||||||
"vynil.solidite.fr/issuer" = var.issuer
|
annotations_default = {
|
||||||
"vynil.solidite.fr/ingress" = var.ingress_class
|
"default.vynil.solidite.fr/sso_vynil" = var.sso_vynil
|
||||||
|
"default.vynil.solidite.fr/domain_name" = var.domain_name
|
||||||
|
"default.vynil.solidite.fr/timezone" = var.timezone
|
||||||
|
"default.vynil.solidite.fr/language" = var.language
|
||||||
|
"default.vynil.solidite.fr/domain" = var.domain
|
||||||
|
"default.vynil.solidite.fr/issuer" = var.issuer
|
||||||
|
"default.vynil.solidite.fr/ingress_class" = var.ingress_class
|
||||||
|
"default.vynil.solidite.fr/app_group" = var.app_group
|
||||||
|
"default.vynil.solidite.fr/backups.enable" = var.backups.enable
|
||||||
|
"default.vynil.solidite.fr/backups.use_barman" = var.backups.use_barman
|
||||||
|
"default.vynil.solidite.fr/backups.endpoint" = var.backups.endpoint
|
||||||
|
"default.vynil.solidite.fr/backups.secret_name" = var.backups.secret_name
|
||||||
|
"default.vynil.solidite.fr/backups.key_id_key" = var.backups.key_id_key
|
||||||
|
"default.vynil.solidite.fr/backups.secret_key" = var.backups.secret_key
|
||||||
|
"default.vynil.solidite.fr/backups.restic_key" = var.backups.restic_key
|
||||||
|
"default.vynil.solidite.fr/storage.volume.accessMode" = var.storage.volume.accessMode
|
||||||
|
"default.vynil.solidite.fr/storage.volume.class" = var.storage.volume.class
|
||||||
}
|
}
|
||||||
global = {
|
global = {
|
||||||
"domain" = var.domain
|
"sso_vynil" = var.sso_vynil
|
||||||
"domain_name" = var.domain_name
|
"domain_name" = var.domain_name
|
||||||
"issuer" = var.issuer
|
"timezone" = var.timezone
|
||||||
"ingress_class" = var.ingress_class
|
"language" = var.language
|
||||||
"backups" = var.backups
|
"domain" = var.domain
|
||||||
"app_group" = var.app_group
|
"issuer" = var.issuer
|
||||||
|
"ingress_class" = var.ingress_class
|
||||||
|
"app_group" = var.app_group
|
||||||
|
}
|
||||||
|
global-backups = {
|
||||||
|
"enable" = var.backups.enable
|
||||||
|
"use_barman" = var.backups.use_barman
|
||||||
|
"endpoint" = var.backups.endpoint
|
||||||
|
"secret_name" = var.backups.secret_name
|
||||||
|
"key_id_key" = var.backups.key_id_key
|
||||||
|
"secret_key" = var.backups.secret_key
|
||||||
|
"restic_key" = var.backups.restic_key
|
||||||
|
}
|
||||||
|
global-volume = {
|
||||||
|
"accessMode" = var.storage.volume.accessMode
|
||||||
|
"class" = var.storage.volume.class
|
||||||
}
|
}
|
||||||
global-apps = merge(local.global, {
|
global-apps = merge(local.global, {
|
||||||
"domain_name" = "devtools.${var.domain_name}"
|
"domain_name" = "devtools.${var.domain_name}"
|
||||||
"app_group" = "dev"
|
"app_group" = "dev"
|
||||||
})
|
})
|
||||||
okd = merge({
|
okd = merge(local.global-apps,{
|
||||||
"namespaces" = concat([
|
"namespaces" = concat([
|
||||||
for station in local.sorted-station-names: "${var.domain}-devspaces-${station}"
|
for station in local.sorted-station-names: "${var.domain}-devspaces-${station}"
|
||||||
],flatten([
|
],flatten([
|
||||||
@@ -27,8 +58,13 @@ locals {
|
|||||||
]
|
]
|
||||||
])
|
])
|
||||||
)
|
)
|
||||||
}, { for k, v in var.apps.okd : k => v if k!="enable" })
|
}, { for k, v in var.okd : k => v if !contains(["enable","storage","backups"],k) },{
|
||||||
gramo = merge({
|
backups = merge(lookup(var.okd, "backups", {}), local.global-backups)
|
||||||
|
storage = merge({ for k, v in lookup(var.okd, "storage", {}) : k => v if !contains(["volume"],k) }, {
|
||||||
|
volume = merge(lookup(lookup(var.okd, "storage", {}), "volume", {}), local.global-volume)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
gramo = merge(local.global-apps, {
|
||||||
"namespaces" = concat([
|
"namespaces" = concat([
|
||||||
for station in local.sorted-station-names: "${var.domain}-devspaces-${station}"
|
for station in local.sorted-station-names: "${var.domain}-devspaces-${station}"
|
||||||
],flatten([
|
],flatten([
|
||||||
@@ -37,8 +73,13 @@ locals {
|
|||||||
]
|
]
|
||||||
])
|
])
|
||||||
)
|
)
|
||||||
}, { for k, v in var.apps.gramo : k => v if k!="enable" })
|
}, { for k, v in var.gramo : k => v if !contains(["enable","storage","backups"],k) },{
|
||||||
dbgate = merge({
|
backups = merge(lookup(var.gramo, "backups", {}), local.global-backups)
|
||||||
|
storage = merge({ for k, v in lookup(var.gramo, "storage", {}) : k => v if !contains(["volume"],k) }, {
|
||||||
|
volume = merge(lookup(lookup(var.gramo, "storage", {}), "volume", {}), local.global-volume)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
dbgate = merge(local.global-apps, {
|
||||||
"pg" = concat(
|
"pg" = concat(
|
||||||
flatten([for ds in local.sorted-datasets: [for db in lookup(ds, "databases", []): {
|
flatten([for ds in local.sorted-datasets: [for db in lookup(ds, "databases", []): {
|
||||||
"name" = "${ds.name}-dataset-pg"
|
"name" = "${ds.name}-dataset-pg"
|
||||||
@@ -139,13 +180,18 @@ locals {
|
|||||||
} if ds.engine=="mongo"]])]),
|
} if ds.engine=="mongo"]])]),
|
||||||
var.external-redis
|
var.external-redis
|
||||||
)
|
)
|
||||||
}, { for k, v in var.apps.dbgate : k => v if k!="enable" })
|
}, { for k, v in var.dbgate : k => v if !contains(["enable","storage","backups"],k) },{
|
||||||
|
backups = merge(lookup(var.dbgate, "backups", {}), local.global-backups)
|
||||||
|
storage = merge({ for k, v in lookup(var.dbgate, "storage", {}) : k => v if !contains(["volume"],k) }, {
|
||||||
|
volume = merge(lookup(lookup(var.dbgate, "storage", {}), "volume", {}), local.global-volume)
|
||||||
|
})
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "kubernetes_namespace_v1" "apps-ns" {
|
resource "kubernetes_namespace_v1" "apps-ns" {
|
||||||
count = (var.apps.dbgate.enable || var.apps.okd.enable || var.apps.gramo.enable) ? 1 : 0
|
count = (var.apps.dbgate.enable || var.apps.okd.enable || var.apps.gramo.enable) ? 1 : 0
|
||||||
metadata {
|
metadata {
|
||||||
annotations = local.annotations
|
annotations = merge(local.annotations, local.annotations_default)
|
||||||
labels = merge(local.common-labels, local.annotations)
|
labels = merge(local.common-labels, local.annotations)
|
||||||
name = "${var.namespace}-devapps"
|
name = "${var.namespace}-devapps"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,12 +6,149 @@ metadata:
|
|||||||
name: domain-devspaces
|
name: domain-devspaces
|
||||||
description: null
|
description: null
|
||||||
options:
|
options:
|
||||||
domain:
|
haveGitea:
|
||||||
default: your-company
|
default: false
|
||||||
examples:
|
examples:
|
||||||
- your-company
|
- false
|
||||||
|
type: boolean
|
||||||
|
timezone:
|
||||||
|
default: Europe/Paris
|
||||||
|
examples:
|
||||||
|
- Europe/Paris
|
||||||
type: string
|
type: string
|
||||||
stations:
|
storage:
|
||||||
|
default:
|
||||||
|
volume:
|
||||||
|
accessMode: ReadWriteOnce
|
||||||
|
class: ''
|
||||||
|
examples:
|
||||||
|
- volume:
|
||||||
|
accessMode: ReadWriteOnce
|
||||||
|
class: ''
|
||||||
|
properties:
|
||||||
|
volume:
|
||||||
|
default:
|
||||||
|
accessMode: ReadWriteOnce
|
||||||
|
class: ''
|
||||||
|
properties:
|
||||||
|
accessMode:
|
||||||
|
default: ReadWriteOnce
|
||||||
|
type: string
|
||||||
|
class:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
type: object
|
||||||
|
app_group:
|
||||||
|
default: dev
|
||||||
|
examples:
|
||||||
|
- dev
|
||||||
|
type: string
|
||||||
|
issuer:
|
||||||
|
default: letsencrypt-prod
|
||||||
|
examples:
|
||||||
|
- letsencrypt-prod
|
||||||
|
type: string
|
||||||
|
organisations:
|
||||||
|
default: []
|
||||||
|
examples:
|
||||||
|
- []
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
datasets:
|
||||||
|
default: []
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
databases:
|
||||||
|
default: []
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
name:
|
||||||
|
default: db
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
engine:
|
||||||
|
default: pg
|
||||||
|
type: string
|
||||||
|
name:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
name:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
|
stages:
|
||||||
|
default: []
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
name:
|
||||||
|
default: prod
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
external-mongos:
|
||||||
|
default: []
|
||||||
|
examples:
|
||||||
|
- []
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
dbname:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
|
name:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
|
namespace:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
|
secret:
|
||||||
|
properties:
|
||||||
|
key:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
|
name:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
username:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
external-pgs:
|
||||||
|
default: []
|
||||||
|
examples:
|
||||||
|
- []
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
dbname:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
|
name:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
|
namespace:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
|
secret:
|
||||||
|
properties:
|
||||||
|
key:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
|
name:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
username:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
external-marias:
|
||||||
default: []
|
default: []
|
||||||
examples:
|
examples:
|
||||||
- []
|
- []
|
||||||
@@ -20,13 +157,62 @@ options:
|
|||||||
name:
|
name:
|
||||||
default: ''
|
default: ''
|
||||||
type: string
|
type: string
|
||||||
organisations:
|
namespace:
|
||||||
default: []
|
default: ''
|
||||||
items:
|
type: string
|
||||||
type: string
|
secret:
|
||||||
type: array
|
properties:
|
||||||
|
key:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
|
name:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
username:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
type: array
|
type: array
|
||||||
|
images:
|
||||||
|
default:
|
||||||
|
codeserver:
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
registry: docker.io
|
||||||
|
repository: sebt3/code-server
|
||||||
|
tag: 4.18
|
||||||
|
examples:
|
||||||
|
- codeserver:
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
registry: docker.io
|
||||||
|
repository: sebt3/code-server
|
||||||
|
tag: 4.18
|
||||||
|
properties:
|
||||||
|
codeserver:
|
||||||
|
default:
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
registry: docker.io
|
||||||
|
repository: sebt3/code-server
|
||||||
|
tag: 4.18
|
||||||
|
properties:
|
||||||
|
pullPolicy:
|
||||||
|
default: IfNotPresent
|
||||||
|
enum:
|
||||||
|
- Always
|
||||||
|
- Never
|
||||||
|
- IfNotPresent
|
||||||
|
type: string
|
||||||
|
registry:
|
||||||
|
default: docker.io
|
||||||
|
type: string
|
||||||
|
repository:
|
||||||
|
default: sebt3/code-server
|
||||||
|
type: string
|
||||||
|
tag:
|
||||||
|
default: 4.18
|
||||||
|
type: number
|
||||||
|
type: object
|
||||||
|
type: object
|
||||||
apps:
|
apps:
|
||||||
default:
|
default:
|
||||||
dbgate:
|
dbgate:
|
||||||
@@ -113,36 +299,26 @@ options:
|
|||||||
default: domain
|
default: domain
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
backups:
|
sso_vynil:
|
||||||
default:
|
default: true
|
||||||
enable: false
|
|
||||||
endpoint: ''
|
|
||||||
key-id-key: s3-id
|
|
||||||
secret-key: s3-secret
|
|
||||||
secret-name: backup-settings
|
|
||||||
examples:
|
examples:
|
||||||
- enable: false
|
- true
|
||||||
endpoint: ''
|
type: boolean
|
||||||
key-id-key: s3-id
|
ingress_class:
|
||||||
secret-key: s3-secret
|
default: traefik
|
||||||
secret-name: backup-settings
|
examples:
|
||||||
properties:
|
- traefik
|
||||||
enable:
|
type: string
|
||||||
default: false
|
language:
|
||||||
type: boolean
|
default: fr_FR
|
||||||
endpoint:
|
examples:
|
||||||
default: ''
|
- fr_FR
|
||||||
type: string
|
type: string
|
||||||
key-id-key:
|
domain_name:
|
||||||
default: s3-id
|
default: your-company.com
|
||||||
type: string
|
examples:
|
||||||
secret-key:
|
- your-company.com
|
||||||
default: s3-secret
|
type: string
|
||||||
type: string
|
|
||||||
secret-name:
|
|
||||||
default: backup-settings
|
|
||||||
type: string
|
|
||||||
type: object
|
|
||||||
external-redis:
|
external-redis:
|
||||||
default: []
|
default: []
|
||||||
examples:
|
examples:
|
||||||
@@ -157,171 +333,52 @@ options:
|
|||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
type: array
|
type: array
|
||||||
haveGitea:
|
backups:
|
||||||
default: false
|
|
||||||
examples:
|
|
||||||
- false
|
|
||||||
type: boolean
|
|
||||||
ingress_class:
|
|
||||||
default: traefik
|
|
||||||
examples:
|
|
||||||
- traefik
|
|
||||||
type: string
|
|
||||||
organisations:
|
|
||||||
default: []
|
|
||||||
examples:
|
|
||||||
- []
|
|
||||||
items:
|
|
||||||
properties:
|
|
||||||
datasets:
|
|
||||||
default: []
|
|
||||||
items:
|
|
||||||
properties:
|
|
||||||
databases:
|
|
||||||
default: []
|
|
||||||
items:
|
|
||||||
properties:
|
|
||||||
name:
|
|
||||||
default: db
|
|
||||||
type: string
|
|
||||||
type: object
|
|
||||||
type: array
|
|
||||||
engine:
|
|
||||||
default: pg
|
|
||||||
type: string
|
|
||||||
name:
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
type: object
|
|
||||||
type: array
|
|
||||||
name:
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
stages:
|
|
||||||
default: []
|
|
||||||
items:
|
|
||||||
properties:
|
|
||||||
name:
|
|
||||||
default: prod
|
|
||||||
type: string
|
|
||||||
type: object
|
|
||||||
type: array
|
|
||||||
type: object
|
|
||||||
type: array
|
|
||||||
domain_name:
|
|
||||||
default: your_company.com
|
|
||||||
examples:
|
|
||||||
- your_company.com
|
|
||||||
type: string
|
|
||||||
storage-classes:
|
|
||||||
default:
|
default:
|
||||||
BlockReadWriteMany: ''
|
enable: false
|
||||||
BlockReadWriteOnce: ''
|
endpoint: ''
|
||||||
FilesystemReadWriteMany: ''
|
key_id_key: s3-id
|
||||||
FilesystemReadWriteOnce: ''
|
restic_key: bck-password
|
||||||
|
secret_key: s3-secret
|
||||||
|
secret_name: backup-settings
|
||||||
|
use_barman: false
|
||||||
examples:
|
examples:
|
||||||
- BlockReadWriteMany: ''
|
- enable: false
|
||||||
BlockReadWriteOnce: ''
|
endpoint: ''
|
||||||
FilesystemReadWriteMany: ''
|
key_id_key: s3-id
|
||||||
FilesystemReadWriteOnce: ''
|
restic_key: bck-password
|
||||||
|
secret_key: s3-secret
|
||||||
|
secret_name: backup-settings
|
||||||
|
use_barman: false
|
||||||
properties:
|
properties:
|
||||||
BlockReadWriteMany:
|
enable:
|
||||||
|
default: false
|
||||||
|
type: boolean
|
||||||
|
endpoint:
|
||||||
default: ''
|
default: ''
|
||||||
type: string
|
type: string
|
||||||
BlockReadWriteOnce:
|
key_id_key:
|
||||||
default: ''
|
default: s3-id
|
||||||
type: string
|
type: string
|
||||||
FilesystemReadWriteMany:
|
restic_key:
|
||||||
default: ''
|
default: bck-password
|
||||||
type: string
|
type: string
|
||||||
FilesystemReadWriteOnce:
|
secret_key:
|
||||||
default: ''
|
default: s3-secret
|
||||||
type: string
|
type: string
|
||||||
|
secret_name:
|
||||||
|
default: backup-settings
|
||||||
|
type: string
|
||||||
|
use_barman:
|
||||||
|
default: false
|
||||||
|
type: boolean
|
||||||
type: object
|
type: object
|
||||||
issuer:
|
|
||||||
default: letsencrypt-prod
|
|
||||||
examples:
|
|
||||||
- letsencrypt-prod
|
|
||||||
type: string
|
|
||||||
app_group:
|
|
||||||
default: dev
|
|
||||||
examples:
|
|
||||||
- dev
|
|
||||||
type: string
|
|
||||||
stations-sub_domain:
|
stations-sub_domain:
|
||||||
default: code
|
default: code
|
||||||
examples:
|
examples:
|
||||||
- code
|
- code
|
||||||
type: string
|
type: string
|
||||||
images:
|
stations:
|
||||||
default:
|
|
||||||
codeserver:
|
|
||||||
pullPolicy: IfNotPresent
|
|
||||||
registry: docker.io
|
|
||||||
repository: sebt3/code-server
|
|
||||||
tag: 4.18
|
|
||||||
examples:
|
|
||||||
- codeserver:
|
|
||||||
pullPolicy: IfNotPresent
|
|
||||||
registry: docker.io
|
|
||||||
repository: sebt3/code-server
|
|
||||||
tag: 4.18
|
|
||||||
properties:
|
|
||||||
codeserver:
|
|
||||||
default:
|
|
||||||
pullPolicy: IfNotPresent
|
|
||||||
registry: docker.io
|
|
||||||
repository: sebt3/code-server
|
|
||||||
tag: 4.18
|
|
||||||
properties:
|
|
||||||
pullPolicy:
|
|
||||||
default: IfNotPresent
|
|
||||||
enum:
|
|
||||||
- Always
|
|
||||||
- Never
|
|
||||||
- IfNotPresent
|
|
||||||
type: string
|
|
||||||
registry:
|
|
||||||
default: docker.io
|
|
||||||
type: string
|
|
||||||
repository:
|
|
||||||
default: sebt3/code-server
|
|
||||||
type: string
|
|
||||||
tag:
|
|
||||||
default: 4.18
|
|
||||||
type: number
|
|
||||||
type: object
|
|
||||||
type: object
|
|
||||||
external-mongos:
|
|
||||||
default: []
|
|
||||||
examples:
|
|
||||||
- []
|
|
||||||
items:
|
|
||||||
properties:
|
|
||||||
dbname:
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
name:
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
namespace:
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
secret:
|
|
||||||
properties:
|
|
||||||
key:
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
name:
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
type: object
|
|
||||||
username:
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
type: object
|
|
||||||
type: array
|
|
||||||
external-marias:
|
|
||||||
default: []
|
default: []
|
||||||
examples:
|
examples:
|
||||||
- []
|
- []
|
||||||
@@ -330,52 +387,18 @@ options:
|
|||||||
name:
|
name:
|
||||||
default: ''
|
default: ''
|
||||||
type: string
|
type: string
|
||||||
namespace:
|
organisations:
|
||||||
default: ''
|
default: []
|
||||||
type: string
|
items:
|
||||||
secret:
|
type: string
|
||||||
properties:
|
type: array
|
||||||
key:
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
name:
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
type: object
|
|
||||||
username:
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
type: object
|
type: object
|
||||||
type: array
|
type: array
|
||||||
external-pgs:
|
domain:
|
||||||
default: []
|
default: your-company
|
||||||
examples:
|
examples:
|
||||||
- []
|
- your-company
|
||||||
items:
|
type: string
|
||||||
properties:
|
|
||||||
dbname:
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
name:
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
namespace:
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
secret:
|
|
||||||
properties:
|
|
||||||
key:
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
name:
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
type: object
|
|
||||||
username:
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
type: object
|
|
||||||
type: array
|
|
||||||
dependencies: []
|
dependencies: []
|
||||||
providers:
|
providers:
|
||||||
kubernetes: true
|
kubernetes: true
|
||||||
|
|||||||
Reference in New Issue
Block a user