mirror of
https://github.com/foomo/posh-providers.git
synced 2025-10-16 12:35:41 +00:00
75 lines
1.5 KiB
JSON
75 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://github.com/foomo/posh-providers/gravitational/teleport/config",
|
|
"$ref": "#/$defs/Config",
|
|
"$defs": {
|
|
"Config": {
|
|
"properties": {
|
|
"path": {
|
|
"type": "string"
|
|
},
|
|
"labels": {
|
|
"additionalProperties": {
|
|
"type": "string"
|
|
},
|
|
"type": "object"
|
|
},
|
|
"hostname": {
|
|
"type": "string"
|
|
},
|
|
"kubernetes": {
|
|
"$ref": "#/$defs/Kubernetes"
|
|
},
|
|
"apps": {
|
|
"additionalProperties": {
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"type": "array"
|
|
},
|
|
"type": "object"
|
|
},
|
|
"database": {
|
|
"$ref": "#/$defs/Database"
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"required": [
|
|
"path",
|
|
"labels",
|
|
"hostname",
|
|
"kubernetes",
|
|
"apps",
|
|
"database"
|
|
]
|
|
},
|
|
"Database": {
|
|
"properties": {
|
|
"user": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"required": [
|
|
"user"
|
|
]
|
|
},
|
|
"Kubernetes": {
|
|
"properties": {
|
|
"aliases": {
|
|
"additionalProperties": {
|
|
"type": "string"
|
|
},
|
|
"type": "object"
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"required": [
|
|
"aliases"
|
|
]
|
|
}
|
|
}
|
|
} |