repository
stringclasses 528
values | commit
stringlengths 40
40
| commitDate
timestamp[s] | path
stringlengths 11
149
| repoStars
int64 5
94.9k
| repoLastFetched
stringclasses 528
values | content
stringlengths 48
736k
| license
stringclasses 14
values | language
stringclasses 7
values |
---|---|---|---|---|---|---|---|---|
flanksource/canary-checker | dd079f0880fa2214c1a84c3aeae6799d596c0259 | 2023-05-19T12:23:14 | config/schemas/health_junit.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"JunitCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"name": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/junit-check",
"$ref": "#/$defs/JunitCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | ed6077948be6923ac96d38fdc6ec19f059b55453 | 2023-12-20T19:54:32 | config/schemas/health_http.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/http-check",
"$ref": "#/$defs/HTTPCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 4fa6e09530378fff0fa3066073dc9e72b7392315 | 2023-11-30T07:23:13 | config/schemas/health_exec.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/exec-check",
"$ref": "#/$defs/ExecCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | c09058c59a2876838927f8d5e175db299d802c66 | 2023-08-25T08:32:59 | config/schemas/health_icmp.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/icmp-check",
"$ref": "#/$defs/ICMPCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 6fe6095294375de0b3856a0801e884ef581e4ba5 | 2023-10-17T04:48:11 | config/schemas/health_http.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"Scopes": {
"items": {
"type": "string"
},
"type": "array"
},
"TokenURL": {
"type": "string"
}
},
"required": [
"Scopes",
"TokenURL"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/http-check",
"$ref": "#/$defs/HTTPCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 4fa6e09530378fff0fa3066073dc9e72b7392315 | 2023-11-30T07:23:13 | config/schemas/canary.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"Canary": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/CanarySpec"
},
"status": {
"$ref": "#/$defs/CanaryStatus"
}
},
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CanaryStatus": {
"additionalProperties": false,
"properties": {
"checkStatus": {
"patternProperties": {
".*": {
"$ref": "#/$defs/CheckStatus"
}
},
"type": "object"
},
"checks": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"errorMessage": {
"type": "string"
},
"lastCheck": {
"$ref": "#/$defs/Time"
},
"lastTransitionedTime": {
"$ref": "#/$defs/Time"
},
"latency1h": {
"type": "string"
},
"message": {
"type": "string"
},
"observedGeneration": {
"type": "integer"
},
"persistedID": {
"type": "string"
},
"status": {
"type": "string"
},
"uptime1h": {
"type": "string"
}
},
"type": "object"
},
"CheckStatus": {
"additionalProperties": false,
"properties": {
"errorMessage": {
"type": "string"
},
"lastCheck": {
"$ref": "#/$defs/Time"
},
"lastTransitionedTime": {
"$ref": "#/$defs/Time"
},
"latency1h": {
"type": "string"
},
"message": {
"type": "string"
},
"uptime1h": {
"type": "string"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/canary",
"$ref": "#/$defs/Canary",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 5ce8ef171039dfdadb5ae217dc31fc7f982c5999 | 2024-01-08T14:55:07 | config/schemas/component.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"relationships": {
"$ref": "#/$defs/CheckRelationship"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CheckRelationship": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Component": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/ComponentSpec"
},
"status": {
"$ref": "#/$defs/ComponentStatus"
}
},
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"$ref": "#/$defs/ConfigQueries"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"parentLookup": {
"$ref": "#/$defs/ParentLookup"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"$ref": "#/$defs/ConfigQueries"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"parentLookup": {
"$ref": "#/$defs/ParentLookup"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentStatus": {
"additionalProperties": false,
"properties": {
"status": {
"$ref": "#/$defs/ComponentStatus"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/ConfigQuery"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ConfigQueries": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"ConfigQuery": {
"additionalProperties": false,
"properties": {
"class": {
"type": "string"
},
"external_id": {
"type": "string"
},
"id": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/S3Connection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCSConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GCSConnection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceSelector": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"Lookup": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LookupSpec": {
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/$defs/Lookup"
},
"namespace": {
"$ref": "#/$defs/Lookup"
},
"type": {
"$ref": "#/$defs/Lookup"
}
},
"type": "object"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"ParentLookup": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"S3Connection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"checks": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
},
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/component",
"$ref": "#/$defs/Component",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 18b231591fd747c966a1e51d2536d28687fdc2b5 | 2023-11-09T12:40:33 | config/schemas/health_ec2.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/ec2-check",
"$ref": "#/$defs/EC2Check",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 311edab23ceae9c5620622500d40cb2aa57b35fd | 2023-12-08T01:53:27 | config/schemas/health_redis.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/redis-check",
"$ref": "#/$defs/RedisCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | e438bd9c662f06acc45fbc108c7c9b8dfaa60517 | 2023-12-21T05:45:25 | config/schemas/health_exec.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
}
},
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/exec-check",
"$ref": "#/$defs/ExecCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 4ae4cdfee4fef5f4d1240d31f682cdd78529fd0e | 2023-07-03T05:29:13 | config/schemas/health_ldap.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/ldap-check",
"$ref": "#/$defs/LDAPCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | e438bd9c662f06acc45fbc108c7c9b8dfaa60517 | 2023-12-21T05:45:25 | config/schemas/health_folder.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/S3Connection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCSConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"GCSConnection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"S3Connection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/folder-check",
"$ref": "#/$defs/FolderCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | c09058c59a2876838927f8d5e175db299d802c66 | 2023-08-25T08:32:59 | config/schemas/health_junit.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"JunitCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/junit-check",
"$ref": "#/$defs/JunitCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 23a2a70ba2388a6bc87b1e874d768cdf83492dbc | 2023-07-18T18:11:58 | config/schemas/health_restic.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/restic-check",
"$ref": "#/$defs/ResticCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | efe0533129fa38051b5069cbf4ba78fd83a1f5be | 2023-12-27T05:28:48 | config/schemas/topology.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"relationships": {
"$ref": "#/$defs/CheckRelationship"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CheckRelationship": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"Config": {
"additionalProperties": false,
"properties": {
"id": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/Config"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/S3Connection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCSConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GCSConnection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"Lookup": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LookupSpec": {
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/$defs/Lookup"
},
"namespace": {
"$ref": "#/$defs/Lookup"
},
"type": {
"$ref": "#/$defs/Lookup"
}
},
"type": "object"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"bucketName": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"inline": {
"$ref": "#/$defs/AWSConnection"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name",
"inline"
],
"type": "object"
},
"S3Connection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"inline": {
"$ref": "#/$defs/AWSConnection"
},
"objectPath": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"inline"
],
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"Topology": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/TopologySpec"
},
"status": {
"$ref": "#/$defs/TopologyStatus"
}
},
"type": "object"
},
"TopologySpec": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"label": {
"type": "string"
},
"owner": {
"type": "string"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"schedule": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"TopologyStatus": {
"additionalProperties": false,
"properties": {
"observedGeneration": {
"type": "integer"
},
"persistentID": {
"type": "string"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/topology",
"$ref": "#/$defs/Topology",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | dd079f0880fa2214c1a84c3aeae6799d596c0259 | 2023-05-19T12:23:14 | config/schemas/health_github.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/git-hub-check",
"$ref": "#/$defs/GitHubCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | c09058c59a2876838927f8d5e175db299d802c66 | 2023-08-25T08:32:59 | config/schemas/health_ec2.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/ec2-check",
"$ref": "#/$defs/EC2Check",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 7615b353e5bfe91baa43265f81501faef2bd0c77 | 2023-08-23T14:33:22 | config/schemas/health_exec.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/exec-check",
"$ref": "#/$defs/ExecCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | d13071338971eff08e86db12067b36ff796c2830 | 2024-01-09T06:10:30 | config/schemas/component.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"relationships": {
"$ref": "#/$defs/CheckRelationship"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CheckRelationship": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Component": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/ComponentSpec"
},
"status": {
"$ref": "#/$defs/ComponentStatus"
}
},
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"$ref": "#/$defs/ConfigQueries"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"hidden": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"parentLookup": {
"$ref": "#/$defs/ParentLookup"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"$ref": "#/$defs/ConfigQueries"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"hidden": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"parentLookup": {
"$ref": "#/$defs/ParentLookup"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentStatus": {
"additionalProperties": false,
"properties": {
"status": {
"$ref": "#/$defs/ComponentStatus"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/ConfigQuery"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ConfigQueries": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"ConfigQuery": {
"additionalProperties": false,
"properties": {
"class": {
"type": "string"
},
"external_id": {
"type": "string"
},
"id": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/S3Connection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCSConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GCSConnection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceSelector": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"Lookup": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LookupSpec": {
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/$defs/Lookup"
},
"namespace": {
"$ref": "#/$defs/Lookup"
},
"type": {
"$ref": "#/$defs/Lookup"
}
},
"type": "object"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"ParentLookup": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"S3Connection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"checks": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
},
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/component",
"$ref": "#/$defs/Component",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | c09058c59a2876838927f8d5e175db299d802c66 | 2023-08-25T08:32:59 | config/schemas/health_jmeter.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/jmeter-check",
"$ref": "#/$defs/JmeterCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | dd079f0880fa2214c1a84c3aeae6799d596c0259 | 2023-05-19T12:23:14 | config/schemas/health_ldap.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"username",
"password"
],
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"name": {
"type": "string"
},
"skipTLSVerify": {
"type": "boolean"
},
"userSearch": {
"type": "string"
}
},
"required": [
"name",
"host",
"auth",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/ldap-check",
"$ref": "#/$defs/LDAPCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | ed6077948be6923ac96d38fdc6ec19f059b55453 | 2023-12-20T19:54:32 | config/schemas/health_jmeter.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/jmeter-check",
"$ref": "#/$defs/JmeterCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 7615b353e5bfe91baa43265f81501faef2bd0c77 | 2023-08-23T14:33:22 | config/schemas/health_s3.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/s3-check",
"$ref": "#/$defs/S3Check",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | cc1c86306aa5013e670add2da43136bf6adf0eee | 2023-08-16T11:46:16 | config/schemas/health_exec.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"name": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/exec-check",
"$ref": "#/$defs/ExecCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 84348c99f742dfe414b720049cc3e8c115d722f7 | 2023-05-17T12:17:00 | config/schemas/health_http.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$ref": "#/definitions/HTTPCheck",
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/definitions/EnvVar"
},
"username": {
"$ref": "#/definitions/EnvVar"
}
},
"required": [
"username",
"password"
],
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/definitions/EnvVarSource",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/definitions/ConfigMapKeySelector",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"secretKeyRef": {
"$ref": "#/definitions/SecretKeySelector",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"authentication": {
"$ref": "#/definitions/Authentication",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/definitions/Template"
},
"endpoint": {
"type": "string"
},
"headers": {
"items": {
"$ref": "#/definitions/EnvVar",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/definitions/JSONCheck",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/definitions/Template",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/definitions/Template"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
}
} | Apache-2.0 | en |
flanksource/canary-checker | 23a2a70ba2388a6bc87b1e874d768cdf83492dbc | 2023-07-18T18:11:58 | config/schemas/health_folder.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/folder-check",
"$ref": "#/$defs/FolderCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | c09058c59a2876838927f8d5e175db299d802c66 | 2023-08-25T08:32:59 | config/schemas/health_tcp.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/tcp-check",
"$ref": "#/$defs/TCPCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 23a2a70ba2388a6bc87b1e874d768cdf83492dbc | 2023-07-18T18:11:58 | config/schemas/health_github.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/git-hub-check",
"$ref": "#/$defs/GitHubCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 37116ad5620f3228c1f47f74625becb425e55572 | 2024-04-08T13:27:14 | config/schemas/topology.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"relationships": {
"$ref": "#/$defs/CheckRelationship"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"catalog": {
"items": {
"$ref": "#/$defs/CatalogCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"gitProtocol": {
"items": {
"$ref": "#/$defs/GitProtocolCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"kubernetesResource": {
"items": {
"$ref": "#/$defs/KubernetesResourceCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CatalogCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"selector": {
"$ref": "#/$defs/ResourceSelectors"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"selector"
],
"type": "object"
},
"CheckRelationship": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"$ref": "#/$defs/ConfigQueries"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"hidden": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"parentLookup": {
"$ref": "#/$defs/ParentLookup"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"$ref": "#/$defs/ConfigQueries"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"hidden": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"parentLookup": {
"$ref": "#/$defs/ParentLookup"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/ConfigQuery"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ConfigQueries": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"ConfigQuery": {
"additionalProperties": false,
"properties": {
"agent": {
"type": "string"
},
"cache": {
"type": "string"
},
"class": {
"type": "string"
},
"external_id": {
"type": "string"
},
"fieldSelector": {
"type": "string"
},
"id": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"statuses": {
"$ref": "#/$defs/Items"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
},
"types": {
"$ref": "#/$defs/Items"
}
},
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/S3Connection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCSConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GCSConnection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"GitProtocolCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filename": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"repository",
"username",
"password"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Items": {
"items": {
"type": "string"
},
"type": "array"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"kubeconfig": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceSelector": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"KubernetesResourceCheck": {
"additionalProperties": false,
"properties": {
"checkRetries": {
"$ref": "#/$defs/KubernetesResourceCheckRetries"
},
"checks": {
"items": {
"$ref": "#/$defs/KubernetesResourceChecks"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"kubeconfig": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"resources": {
"items": {
"$ref": "#/$defs/Unstructured"
},
"type": "array"
},
"staticResources": {
"items": {
"$ref": "#/$defs/Unstructured"
},
"type": "array"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"waitFor": {
"$ref": "#/$defs/KubernetesResourceCheckWaitFor"
}
},
"required": [
"name",
"resources"
],
"type": "object"
},
"KubernetesResourceCheckRetries": {
"additionalProperties": false,
"properties": {
"delay": {
"type": "string"
},
"interval": {
"type": "string"
},
"maxRetries": {
"type": "integer"
},
"timeout": {
"type": "string"
}
},
"type": "object"
},
"KubernetesResourceCheckWaitFor": {
"additionalProperties": false,
"properties": {
"disable": {
"type": "boolean"
},
"expr": {
"type": "string"
},
"interval": {
"type": "string"
},
"maxRetries": {
"type": "integer"
},
"timeout": {
"type": "string"
}
},
"type": "object"
},
"KubernetesResourceChecks": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"catalog": {
"items": {
"$ref": "#/$defs/CatalogCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"gitProtocol": {
"items": {
"$ref": "#/$defs/GitProtocolCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"kubernetesResource": {
"items": {
"$ref": "#/$defs/KubernetesResourceCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"Lookup": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LookupSpec": {
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/$defs/Lookup"
},
"namespace": {
"$ref": "#/$defs/Lookup"
},
"type": {
"$ref": "#/$defs/Lookup"
}
},
"type": "object"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"ParentLookup": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"S3Connection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"checks": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
},
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"Topology": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/TopologySpec"
},
"status": {
"$ref": "#/$defs/TopologyStatus"
}
},
"type": "object"
},
"TopologySpec": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"label": {
"type": "string"
},
"owner": {
"type": "string"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"schedule": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"TopologyStatus": {
"additionalProperties": false,
"properties": {
"observedGeneration": {
"type": "integer"
},
"persistentID": {
"type": "string"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"Unstructured": {
"additionalProperties": false,
"properties": {
"Object": {
"type": "object"
}
},
"required": [
"Object"
],
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/topology",
"$ref": "#/$defs/Topology",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 603e32c900f9aa15d86f5ae1e3e2dd581a893dd9 | 2023-10-19T13:33:59 | config/schemas/component.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"Component": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/ComponentSpec"
},
"status": {
"$ref": "#/$defs/ComponentStatus"
}
},
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentStatus": {
"additionalProperties": false,
"properties": {
"status": {
"type": "string"
}
},
"type": "object"
},
"Config": {
"additionalProperties": false,
"properties": {
"id": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/Config"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/component",
"$ref": "#/$defs/Component",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 311edab23ceae9c5620622500d40cb2aa57b35fd | 2023-12-08T01:53:27 | config/schemas/health_jmeter.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/jmeter-check",
"$ref": "#/$defs/JmeterCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 726174085ad8ce66d13f7b8ea176bb4a2019cb8e | 2023-05-17T12:17:00 | config/schemas/health_mysql.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$ref": "#/definitions/MysqlCheck",
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/definitions/EnvVar"
},
"username": {
"$ref": "#/definitions/EnvVar",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"required": [
"username",
"password"
],
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/definitions/EnvVarSource",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/definitions/ConfigMapKeySelector",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"secretKeyRef": {
"$ref": "#/definitions/SecretKeySelector",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/definitions/Authentication",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/definitions/Template"
},
"icon": {
"type": "string"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/definitions/Template",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"transform": {
"$ref": "#/definitions/Template"
}
},
"required": [
"name",
"connection"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
}
} | Apache-2.0 | en |
flanksource/canary-checker | 18b231591fd747c966a1e51d2536d28687fdc2b5 | 2023-11-09T12:40:33 | config/schemas/health_redis.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/redis-check",
"$ref": "#/$defs/RedisCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 726174085ad8ce66d13f7b8ea176bb4a2019cb8e | 2023-05-17T12:17:00 | config/schemas/health_redis.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$ref": "#/definitions/RedisCheck",
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/definitions/EnvVar"
},
"username": {
"$ref": "#/definitions/EnvVar",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"required": [
"username",
"password"
],
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/definitions/EnvVarSource",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/definitions/ConfigMapKeySelector",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"secretKeyRef": {
"$ref": "#/definitions/SecretKeySelector",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"auth": {
"$ref": "#/definitions/Authentication",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"addr",
"db"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
}
}
} | Apache-2.0 | en |
flanksource/canary-checker | c09058c59a2876838927f8d5e175db299d802c66 | 2023-08-25T08:32:59 | config/schemas/health_http.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/http-check",
"$ref": "#/$defs/HTTPCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 03a60df496d6b15e01c2586b3587dfca1999f736 | 2023-12-08T06:31:37 | config/schemas/component.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"relationships": {
"$ref": "#/$defs/CheckRelationship"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CheckRelationship": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/CheckRelationshipLookupFields"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/CheckRelationshipLookupFields"
},
"type": "array"
}
},
"type": "object"
},
"CheckRelationshipLookup": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"CheckRelationshipLookupFields": {
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/$defs/CheckRelationshipLookup"
},
"namespace": {
"$ref": "#/$defs/CheckRelationshipLookup"
},
"type": {
"$ref": "#/$defs/CheckRelationshipLookup"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"Component": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/ComponentSpec"
},
"status": {
"$ref": "#/$defs/ComponentStatus"
}
},
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentStatus": {
"additionalProperties": false,
"properties": {
"status": {
"type": "string"
}
},
"type": "object"
},
"Config": {
"additionalProperties": false,
"properties": {
"id": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/Config"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/component",
"$ref": "#/$defs/Component",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 18b231591fd747c966a1e51d2536d28687fdc2b5 | 2023-11-09T12:40:33 | config/schemas/health_icmp.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/icmp-check",
"$ref": "#/$defs/ICMPCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 7615b353e5bfe91baa43265f81501faef2bd0c77 | 2023-08-23T14:33:22 | config/schemas/health_tcp.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/tcp-check",
"$ref": "#/$defs/TCPCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | c6ae0c0197227968c979dcd4a170608c82c027e0 | 2023-11-01T18:52:14 | config/schemas/topology.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"Config": {
"additionalProperties": false,
"properties": {
"id": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/Config"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"Topology": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/TopologySpec"
},
"status": {
"$ref": "#/$defs/TopologyStatus"
}
},
"type": "object"
},
"TopologySpec": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"label": {
"type": "string"
},
"owner": {
"type": "string"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"schedule": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"TopologyStatus": {
"additionalProperties": false,
"properties": {
"observedGeneration": {
"type": "integer"
},
"persistentID": {
"type": "string"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/topology",
"$ref": "#/$defs/Topology",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 23a2a70ba2388a6bc87b1e874d768cdf83492dbc | 2023-07-18T18:11:58 | config/schemas/health_tcp.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"name": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/tcp-check",
"$ref": "#/$defs/TCPCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | d13071338971eff08e86db12067b36ff796c2830 | 2024-01-09T06:10:30 | config/schemas/topology.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"relationships": {
"$ref": "#/$defs/CheckRelationship"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CheckRelationship": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"$ref": "#/$defs/ConfigQueries"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"hidden": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"parentLookup": {
"$ref": "#/$defs/ParentLookup"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"$ref": "#/$defs/ConfigQueries"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"hidden": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"parentLookup": {
"$ref": "#/$defs/ParentLookup"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/ConfigQuery"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ConfigQueries": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"ConfigQuery": {
"additionalProperties": false,
"properties": {
"class": {
"type": "string"
},
"external_id": {
"type": "string"
},
"id": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/S3Connection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCSConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GCSConnection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceSelector": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"Lookup": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LookupSpec": {
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/$defs/Lookup"
},
"namespace": {
"$ref": "#/$defs/Lookup"
},
"type": {
"$ref": "#/$defs/Lookup"
}
},
"type": "object"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"ParentLookup": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"S3Connection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"checks": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
},
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"Topology": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/TopologySpec"
},
"status": {
"$ref": "#/$defs/TopologyStatus"
}
},
"type": "object"
},
"TopologySpec": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"label": {
"type": "string"
},
"owner": {
"type": "string"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"schedule": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"TopologyStatus": {
"additionalProperties": false,
"properties": {
"observedGeneration": {
"type": "integer"
},
"persistentID": {
"type": "string"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/topology",
"$ref": "#/$defs/Topology",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 4ae4cdfee4fef5f4d1240d31f682cdd78529fd0e | 2023-07-03T05:29:13 | config/schemas/health_folder.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/folder-check",
"$ref": "#/$defs/FolderCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 726174085ad8ce66d13f7b8ea176bb4a2019cb8e | 2023-05-17T12:17:00 | config/schemas/health_ldap.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$ref": "#/definitions/LDAPCheck",
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/definitions/EnvVar"
},
"username": {
"$ref": "#/definitions/EnvVar",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"required": [
"username",
"password"
],
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/definitions/EnvVarSource",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/definitions/ConfigMapKeySelector",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"secretKeyRef": {
"$ref": "#/definitions/SecretKeySelector",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/definitions/Authentication",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"skipTLSVerify": {
"type": "boolean"
},
"userSearch": {
"type": "string"
}
},
"required": [
"name",
"host",
"auth",
"bindDN"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
}
}
} | Apache-2.0 | en |
flanksource/canary-checker | b4717c41c5125dc1c3e5a6dfd2112aea8ccbb650 | 2023-11-01T07:57:42 | config/schemas/topology.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"Config": {
"additionalProperties": false,
"properties": {
"id": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/Config"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"Topology": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/TopologySpec"
},
"status": {
"$ref": "#/$defs/TopologyStatus"
}
},
"type": "object"
},
"TopologySpec": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"label": {
"type": "string"
},
"owner": {
"type": "string"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"schedule": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"TopologyStatus": {
"additionalProperties": false,
"properties": {
"observedGeneration": {
"type": "integer"
},
"persistentID": {
"type": "string"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/topology",
"$ref": "#/$defs/Topology",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | e438bd9c662f06acc45fbc108c7c9b8dfaa60517 | 2023-12-21T05:45:25 | config/schemas/topology.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"relationships": {
"$ref": "#/$defs/CheckRelationship"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CheckRelationship": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"Config": {
"additionalProperties": false,
"properties": {
"id": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/Config"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/S3Connection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCSConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GCSConnection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"Lookup": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LookupSpec": {
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/$defs/Lookup"
},
"namespace": {
"$ref": "#/$defs/Lookup"
},
"type": {
"$ref": "#/$defs/Lookup"
}
},
"type": "object"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"S3Connection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"Topology": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/TopologySpec"
},
"status": {
"$ref": "#/$defs/TopologyStatus"
}
},
"type": "object"
},
"TopologySpec": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"label": {
"type": "string"
},
"owner": {
"type": "string"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"schedule": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"TopologyStatus": {
"additionalProperties": false,
"properties": {
"observedGeneration": {
"type": "integer"
},
"persistentID": {
"type": "string"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/topology",
"$ref": "#/$defs/Topology",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 7615b353e5bfe91baa43265f81501faef2bd0c77 | 2023-08-23T14:33:22 | config/schemas/health_http.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/http-check",
"$ref": "#/$defs/HTTPCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 726174085ad8ce66d13f7b8ea176bb4a2019cb8e | 2023-05-17T12:17:00 | config/schemas/health_ec2.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$ref": "#/definitions/EC2Check",
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/definitions/EnvVar",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/definitions/LocalObjectReference",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/definitions/EnvVar"
},
"securityGroup": {
"type": "string"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"usePathStyle": {
"type": "boolean"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/definitions/EnvVarSource",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/definitions/ConfigMapKeySelector",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"secretKeyRef": {
"$ref": "#/definitions/SecretKeySelector",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
}
}
} | Apache-2.0 | en |
flanksource/canary-checker | 4ae4cdfee4fef5f4d1240d31f682cdd78529fd0e | 2023-07-03T05:29:13 | config/schemas/health_redis.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/redis-check",
"$ref": "#/$defs/RedisCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | dd079f0880fa2214c1a84c3aeae6799d596c0259 | 2023-05-19T12:23:14 | config/schemas/health_mssql.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"username",
"password"
],
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
}
},
"required": [
"name",
"connection"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/mssql-check",
"$ref": "#/$defs/MssqlCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 4fa6e09530378fff0fa3066073dc9e72b7392315 | 2023-11-30T07:23:13 | config/schemas/component.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"Component": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/ComponentSpec"
},
"status": {
"$ref": "#/$defs/ComponentStatus"
}
},
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentStatus": {
"additionalProperties": false,
"properties": {
"status": {
"type": "string"
}
},
"type": "object"
},
"Config": {
"additionalProperties": false,
"properties": {
"id": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/Config"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/component",
"$ref": "#/$defs/Component",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 726174085ad8ce66d13f7b8ea176bb4a2019cb8e | 2023-05-17T12:17:00 | config/schemas/health_mssql.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$ref": "#/definitions/MssqlCheck",
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/definitions/EnvVar"
},
"username": {
"$ref": "#/definitions/EnvVar",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"required": [
"username",
"password"
],
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/definitions/EnvVarSource",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/definitions/ConfigMapKeySelector",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"secretKeyRef": {
"$ref": "#/definitions/SecretKeySelector",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/definitions/Authentication",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/definitions/Template"
},
"icon": {
"type": "string"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/definitions/Template",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"transform": {
"$ref": "#/definitions/Template"
}
},
"required": [
"name",
"connection"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
}
} | Apache-2.0 | en |
flanksource/canary-checker | efe0533129fa38051b5069cbf4ba78fd83a1f5be | 2023-12-27T05:28:48 | config/schemas/canary.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"relationships": {
"$ref": "#/$defs/CheckRelationship"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"Canary": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/CanarySpec"
},
"status": {
"$ref": "#/$defs/CanaryStatus"
}
},
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CanaryStatus": {
"additionalProperties": false,
"properties": {
"checkStatus": {
"patternProperties": {
".*": {
"$ref": "#/$defs/CheckStatus"
}
},
"type": "object"
},
"checks": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"errorMessage": {
"type": "string"
},
"lastCheck": {
"$ref": "#/$defs/Time"
},
"lastTransitionedTime": {
"$ref": "#/$defs/Time"
},
"latency1h": {
"type": "string"
},
"message": {
"type": "string"
},
"observedGeneration": {
"type": "integer"
},
"persistedID": {
"type": "string"
},
"replicas": {
"type": "integer"
},
"status": {
"type": "string"
},
"uptime1h": {
"type": "string"
}
},
"type": "object"
},
"CheckRelationship": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
}
},
"type": "object"
},
"CheckStatus": {
"additionalProperties": false,
"properties": {
"errorMessage": {
"type": "string"
},
"lastCheck": {
"$ref": "#/$defs/Time"
},
"lastTransitionedTime": {
"$ref": "#/$defs/Time"
},
"latency1h": {
"type": "string"
},
"message": {
"type": "string"
},
"uptime1h": {
"type": "string"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/S3Connection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCSConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GCSConnection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"Lookup": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LookupSpec": {
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/$defs/Lookup"
},
"namespace": {
"$ref": "#/$defs/Lookup"
},
"type": {
"$ref": "#/$defs/Lookup"
}
},
"type": "object"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"bucketName": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"inline": {
"$ref": "#/$defs/AWSConnection"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name",
"inline"
],
"type": "object"
},
"S3Connection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"inline": {
"$ref": "#/$defs/AWSConnection"
},
"objectPath": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"inline"
],
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/canary",
"$ref": "#/$defs/Canary",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 9a1defc4db6b77da7c0b64f1e21f8faafc76f5e6 | 2024-05-02T10:21:30 | config/schemas/component.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"relationships": {
"$ref": "#/$defs/CheckRelationship"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"catalog": {
"items": {
"$ref": "#/$defs/CatalogCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"gitProtocol": {
"items": {
"$ref": "#/$defs/GitProtocolCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"kubernetesResource": {
"items": {
"$ref": "#/$defs/KubernetesResourceCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CatalogCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"selector": {
"$ref": "#/$defs/ResourceSelectors"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"selector"
],
"type": "object"
},
"CheckRelationship": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Component": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/ComponentSpec"
},
"status": {
"$ref": "#/$defs/ComponentStatus"
}
},
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"$ref": "#/$defs/ConfigQueries"
},
"externalID": {
"type": "string"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"hidden": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"parentLookup": {
"$ref": "#/$defs/ParentLookup"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"$ref": "#/$defs/ConfigQueries"
},
"externalID": {
"type": "string"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"hidden": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"parentLookup": {
"$ref": "#/$defs/ParentLookup"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentStatus": {
"additionalProperties": false,
"properties": {
"status": {
"$ref": "#/$defs/ComponentStatus"
}
},
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/ConfigQuery"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ConfigQueries": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"ConfigQuery": {
"additionalProperties": false,
"properties": {
"agent": {
"type": "string"
},
"cache": {
"type": "string"
},
"class": {
"type": "string"
},
"external_id": {
"type": "string"
},
"fieldSelector": {
"type": "string"
},
"id": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"statuses": {
"$ref": "#/$defs/Items"
},
"tagSelector": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
},
"types": {
"$ref": "#/$defs/Items"
}
},
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/S3Connection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCSConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GCSConnection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"GitProtocolCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filename": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"repository",
"username",
"password"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Items": {
"items": {
"type": "string"
},
"type": "array"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"healthy": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"kubeconfig": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceSelector": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"KubernetesResourceCheck": {
"additionalProperties": false,
"properties": {
"checkRetries": {
"$ref": "#/$defs/KubernetesResourceCheckRetries"
},
"checks": {
"items": {
"$ref": "#/$defs/KubernetesResourceChecks"
},
"type": "array"
},
"clearResources": {
"type": "boolean"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"kubeconfig": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"resources": {
"items": {
"$ref": "#/$defs/Unstructured"
},
"type": "array"
},
"staticResources": {
"items": {
"$ref": "#/$defs/Unstructured"
},
"type": "array"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"waitFor": {
"$ref": "#/$defs/KubernetesResourceCheckWaitFor"
}
},
"required": [
"name",
"resources"
],
"type": "object"
},
"KubernetesResourceCheckRetries": {
"additionalProperties": false,
"properties": {
"delay": {
"type": "string"
},
"interval": {
"type": "string"
},
"timeout": {
"type": "string"
}
},
"type": "object"
},
"KubernetesResourceCheckWaitFor": {
"additionalProperties": false,
"properties": {
"delete": {
"type": "boolean"
},
"disable": {
"type": "boolean"
},
"expr": {
"type": "string"
},
"interval": {
"type": "string"
},
"timeout": {
"type": "string"
}
},
"type": "object"
},
"KubernetesResourceChecks": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"catalog": {
"items": {
"$ref": "#/$defs/CatalogCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"gitProtocol": {
"items": {
"$ref": "#/$defs/GitProtocolCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"kubernetesResource": {
"items": {
"$ref": "#/$defs/KubernetesResourceCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"Lookup": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LookupSpec": {
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/$defs/Lookup"
},
"namespace": {
"$ref": "#/$defs/Lookup"
},
"type": {
"$ref": "#/$defs/Lookup"
}
},
"type": "object"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"ParentLookup": {
"additionalProperties": false,
"properties": {
"externalID": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"S3Connection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"checks": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
},
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"Unstructured": {
"additionalProperties": false,
"properties": {
"Object": {
"type": "object"
}
},
"required": [
"Object"
],
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/component",
"$ref": "#/$defs/Component",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 23a2a70ba2388a6bc87b1e874d768cdf83492dbc | 2023-07-18T18:11:58 | config/schemas/health_helm.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"name": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/helm-check",
"$ref": "#/$defs/HelmCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 726174085ad8ce66d13f7b8ea176bb4a2019cb8e | 2023-05-17T12:17:00 | config/schemas/health_mongodb.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$ref": "#/definitions/MongoDBCheck",
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/definitions/EnvVar"
},
"username": {
"$ref": "#/definitions/EnvVar",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"required": [
"username",
"password"
],
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/definitions/EnvVarSource",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/definitions/ConfigMapKeySelector",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"secretKeyRef": {
"$ref": "#/definitions/SecretKeySelector",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/definitions/Authentication",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"connection"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
}
}
} | Apache-2.0 | en |
flanksource/canary-checker | c6ae0c0197227968c979dcd4a170608c82c027e0 | 2023-11-01T18:52:14 | config/schemas/component.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"Component": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/ComponentSpec"
},
"status": {
"$ref": "#/$defs/ComponentStatus"
}
},
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentStatus": {
"additionalProperties": false,
"properties": {
"status": {
"type": "string"
}
},
"type": "object"
},
"Config": {
"additionalProperties": false,
"properties": {
"id": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/Config"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/component",
"$ref": "#/$defs/Component",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 03a60df496d6b15e01c2586b3587dfca1999f736 | 2023-12-08T06:31:37 | config/schemas/canary.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"relationships": {
"$ref": "#/$defs/CheckRelationship"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"Canary": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/CanarySpec"
},
"status": {
"$ref": "#/$defs/CanaryStatus"
}
},
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CanaryStatus": {
"additionalProperties": false,
"properties": {
"checkStatus": {
"patternProperties": {
".*": {
"$ref": "#/$defs/CheckStatus"
}
},
"type": "object"
},
"checks": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"errorMessage": {
"type": "string"
},
"lastCheck": {
"$ref": "#/$defs/Time"
},
"lastTransitionedTime": {
"$ref": "#/$defs/Time"
},
"latency1h": {
"type": "string"
},
"message": {
"type": "string"
},
"observedGeneration": {
"type": "integer"
},
"persistedID": {
"type": "string"
},
"replicas": {
"type": "integer"
},
"status": {
"type": "string"
},
"uptime1h": {
"type": "string"
}
},
"type": "object"
},
"CheckRelationship": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/CheckRelationshipLookupFields"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/CheckRelationshipLookupFields"
},
"type": "array"
}
},
"type": "object"
},
"CheckRelationshipLookup": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"CheckRelationshipLookupFields": {
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/$defs/CheckRelationshipLookup"
},
"namespace": {
"$ref": "#/$defs/CheckRelationshipLookup"
},
"type": {
"$ref": "#/$defs/CheckRelationshipLookup"
}
},
"type": "object"
},
"CheckStatus": {
"additionalProperties": false,
"properties": {
"errorMessage": {
"type": "string"
},
"lastCheck": {
"$ref": "#/$defs/Time"
},
"lastTransitionedTime": {
"$ref": "#/$defs/Time"
},
"latency1h": {
"type": "string"
},
"message": {
"type": "string"
},
"uptime1h": {
"type": "string"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/canary",
"$ref": "#/$defs/Canary",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | ed6077948be6923ac96d38fdc6ec19f059b55453 | 2023-12-20T19:54:32 | config/schemas/health_s3.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/s3-check",
"$ref": "#/$defs/S3Check",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | efe0533129fa38051b5069cbf4ba78fd83a1f5be | 2023-12-27T05:28:48 | config/schemas/health_s3.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"bucketName": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"inline": {
"$ref": "#/$defs/AWSConnection"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name",
"inline"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/s3-check",
"$ref": "#/$defs/S3Check",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | ed6077948be6923ac96d38fdc6ec19f059b55453 | 2023-12-20T19:54:32 | config/schemas/health_webhook.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/webhook-check",
"$ref": "#/$defs/WebhookCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 7615b353e5bfe91baa43265f81501faef2bd0c77 | 2023-08-23T14:33:22 | config/schemas/health_mysql.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/mysql-check",
"$ref": "#/$defs/MysqlCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | ed6077948be6923ac96d38fdc6ec19f059b55453 | 2023-12-20T19:54:32 | config/schemas/health_ec2.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/ec2-check",
"$ref": "#/$defs/EC2Check",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 726174085ad8ce66d13f7b8ea176bb4a2019cb8e | 2023-05-17T12:17:00 | config/schemas/health_exec.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$ref": "#/definitions/ExecCheck",
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"ExecCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/definitions/Template"
},
"icon": {
"type": "string"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/definitions/Template",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"transform": {
"$ref": "#/definitions/Template"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
}
} | Apache-2.0 | en |
flanksource/canary-checker | c09058c59a2876838927f8d5e175db299d802c66 | 2023-08-25T08:32:59 | config/schemas/health_folder.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/folder-check",
"$ref": "#/$defs/FolderCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | c09058c59a2876838927f8d5e175db299d802c66 | 2023-08-25T08:32:59 | config/schemas/health_helm.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/helm-check",
"$ref": "#/$defs/HelmCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 726174085ad8ce66d13f7b8ea176bb4a2019cb8e | 2023-05-17T12:17:00 | config/schemas/health_tcp.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$ref": "#/definitions/TCPCheck",
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
}
}
} | Apache-2.0 | en |
flanksource/canary-checker | ed6077948be6923ac96d38fdc6ec19f059b55453 | 2023-12-20T19:54:32 | config/schemas/health_folder.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/folder-check",
"$ref": "#/$defs/FolderCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | b4717c41c5125dc1c3e5a6dfd2112aea8ccbb650 | 2023-11-01T07:57:42 | config/schemas/component.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"Component": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/ComponentSpec"
},
"status": {
"$ref": "#/$defs/ComponentStatus"
}
},
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentStatus": {
"additionalProperties": false,
"properties": {
"status": {
"type": "string"
}
},
"type": "object"
},
"Config": {
"additionalProperties": false,
"properties": {
"id": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/Config"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/component",
"$ref": "#/$defs/Component",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 302d0dfafb8d3d418e666033ed3a1e26affc68a4 | 2023-12-27T18:38:03 | config/schemas/topology.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"relationships": {
"$ref": "#/$defs/CheckRelationship"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CheckRelationship": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"$ref": "#/$defs/ConfigQueries"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"$ref": "#/$defs/ConfigQueries"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/ConfigQuery"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ConfigQueries": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"ConfigQuery": {
"additionalProperties": false,
"properties": {
"class": {
"type": "string"
},
"external_id": {
"type": "string"
},
"id": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/S3Connection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCSConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GCSConnection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"Lookup": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LookupSpec": {
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/$defs/Lookup"
},
"namespace": {
"$ref": "#/$defs/Lookup"
},
"type": {
"$ref": "#/$defs/Lookup"
}
},
"type": "object"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"bucketName": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"inline": {
"$ref": "#/$defs/AWSConnection"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name",
"inline"
],
"type": "object"
},
"S3Connection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"inline": {
"$ref": "#/$defs/AWSConnection"
},
"objectPath": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"inline"
],
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"checks": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
},
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"Topology": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/TopologySpec"
},
"status": {
"$ref": "#/$defs/TopologyStatus"
}
},
"type": "object"
},
"TopologySpec": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"label": {
"type": "string"
},
"owner": {
"type": "string"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"schedule": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"TopologyStatus": {
"additionalProperties": false,
"properties": {
"observedGeneration": {
"type": "integer"
},
"persistentID": {
"type": "string"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/topology",
"$ref": "#/$defs/Topology",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 18b231591fd747c966a1e51d2536d28687fdc2b5 | 2023-11-09T12:40:33 | config/schemas/health_helm.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/helm-check",
"$ref": "#/$defs/HelmCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | aa23533b6f2ddc568936690a8a6efe2c187cc729 | 2024-01-15T18:35:03 | config/schemas/topology.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"relationships": {
"$ref": "#/$defs/CheckRelationship"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"gitProtocol": {
"items": {
"$ref": "#/$defs/GitProtocolCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CheckRelationship": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"$ref": "#/$defs/ConfigQueries"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"hidden": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"parentLookup": {
"$ref": "#/$defs/ParentLookup"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"$ref": "#/$defs/ConfigQueries"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"hidden": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"parentLookup": {
"$ref": "#/$defs/ParentLookup"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/ConfigQuery"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ConfigQueries": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"ConfigQuery": {
"additionalProperties": false,
"properties": {
"class": {
"type": "string"
},
"external_id": {
"type": "string"
},
"id": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/S3Connection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCSConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GCSConnection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"GitProtocolCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filename": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"repository",
"username",
"password"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceSelector": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"Lookup": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LookupSpec": {
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/$defs/Lookup"
},
"namespace": {
"$ref": "#/$defs/Lookup"
},
"type": {
"$ref": "#/$defs/Lookup"
}
},
"type": "object"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"ParentLookup": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"S3Connection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"checks": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
},
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"Topology": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/TopologySpec"
},
"status": {
"$ref": "#/$defs/TopologyStatus"
}
},
"type": "object"
},
"TopologySpec": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"label": {
"type": "string"
},
"owner": {
"type": "string"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"schedule": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"TopologyStatus": {
"additionalProperties": false,
"properties": {
"observedGeneration": {
"type": "integer"
},
"persistentID": {
"type": "string"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/topology",
"$ref": "#/$defs/Topology",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | ed6077948be6923ac96d38fdc6ec19f059b55453 | 2023-12-20T19:54:32 | config/schemas/health_helm.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/helm-check",
"$ref": "#/$defs/HelmCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 1aa9de327a23967f7354e409a01cb3377e4b66a4 | 2023-12-21T03:47:25 | config/schemas/health_folder.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/folder-check",
"$ref": "#/$defs/FolderCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 311edab23ceae9c5620622500d40cb2aa57b35fd | 2023-12-08T01:53:27 | config/schemas/health_webhook.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/webhook-check",
"$ref": "#/$defs/WebhookCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 311edab23ceae9c5620622500d40cb2aa57b35fd | 2023-12-08T01:53:27 | config/schemas/health_ldap.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/ldap-check",
"$ref": "#/$defs/LDAPCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | ed6077948be6923ac96d38fdc6ec19f059b55453 | 2023-12-20T19:54:32 | config/schemas/health_redis.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/redis-check",
"$ref": "#/$defs/RedisCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 18b231591fd747c966a1e51d2536d28687fdc2b5 | 2023-11-09T12:40:33 | config/schemas/health_folder.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/folder-check",
"$ref": "#/$defs/FolderCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | dd079f0880fa2214c1a84c3aeae6799d596c0259 | 2023-05-19T12:23:14 | config/schemas/health_folder.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"username",
"password"
],
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"port": {
"type": "integer"
}
},
"required": [
"host",
"auth"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"port": {
"type": "integer"
},
"searchPath": {
"type": "string"
},
"sharename": {
"type": "string"
},
"workstation": {
"type": "string"
}
},
"required": [
"auth"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/folder-check",
"$ref": "#/$defs/FolderCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 1aa9de327a23967f7354e409a01cb3377e4b66a4 | 2023-12-21T03:47:25 | config/schemas/component.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"relationships": {
"$ref": "#/$defs/CheckRelationship"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CheckRelationship": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"Component": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/ComponentSpec"
},
"status": {
"$ref": "#/$defs/ComponentStatus"
}
},
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentStatus": {
"additionalProperties": false,
"properties": {
"status": {
"type": "string"
}
},
"type": "object"
},
"Config": {
"additionalProperties": false,
"properties": {
"id": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/Config"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"Lookup": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LookupSpec": {
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/$defs/Lookup"
},
"namespace": {
"$ref": "#/$defs/Lookup"
},
"type": {
"$ref": "#/$defs/Lookup"
}
},
"type": "object"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/component",
"$ref": "#/$defs/Component",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 311edab23ceae9c5620622500d40cb2aa57b35fd | 2023-12-08T01:53:27 | config/schemas/health_exec.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/exec-check",
"$ref": "#/$defs/ExecCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 224def01dcbb9eb5e899e16aaa87141e15a6adb5 | 2024-04-19T07:16:06 | config/schemas/canary.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"relationships": {
"$ref": "#/$defs/CheckRelationship"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"Canary": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/CanarySpec"
},
"status": {
"$ref": "#/$defs/CanaryStatus"
}
},
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"catalog": {
"items": {
"$ref": "#/$defs/CatalogCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"gitProtocol": {
"items": {
"$ref": "#/$defs/GitProtocolCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"kubernetesResource": {
"items": {
"$ref": "#/$defs/KubernetesResourceCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CanaryStatus": {
"additionalProperties": false,
"properties": {
"checkStatus": {
"patternProperties": {
".*": {
"$ref": "#/$defs/CheckStatus"
}
},
"type": "object"
},
"checks": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"errorMessage": {
"type": "string"
},
"lastCheck": {
"$ref": "#/$defs/Time"
},
"lastTransitionedTime": {
"$ref": "#/$defs/Time"
},
"latency1h": {
"type": "string"
},
"message": {
"type": "string"
},
"observedGeneration": {
"type": "integer"
},
"persistedID": {
"type": "string"
},
"replicas": {
"type": "integer"
},
"status": {
"type": "string"
},
"uptime1h": {
"type": "string"
}
},
"type": "object"
},
"CatalogCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"selector": {
"$ref": "#/$defs/ResourceSelectors"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"selector"
],
"type": "object"
},
"CheckRelationship": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
}
},
"type": "object"
},
"CheckStatus": {
"additionalProperties": false,
"properties": {
"errorMessage": {
"type": "string"
},
"lastCheck": {
"$ref": "#/$defs/Time"
},
"lastTransitionedTime": {
"$ref": "#/$defs/Time"
},
"latency1h": {
"type": "string"
},
"message": {
"type": "string"
},
"uptime1h": {
"type": "string"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/S3Connection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCSConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GCSConnection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"GitProtocolCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filename": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"repository",
"username",
"password"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"healthy": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"kubeconfig": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceSelector": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"KubernetesResourceCheck": {
"additionalProperties": false,
"properties": {
"checkRetries": {
"$ref": "#/$defs/KubernetesResourceCheckRetries"
},
"checks": {
"items": {
"$ref": "#/$defs/KubernetesResourceChecks"
},
"type": "array"
},
"clearResources": {
"type": "boolean"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"kubeconfig": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"resources": {
"items": {
"$ref": "#/$defs/Unstructured"
},
"type": "array"
},
"staticResources": {
"items": {
"$ref": "#/$defs/Unstructured"
},
"type": "array"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"waitFor": {
"$ref": "#/$defs/KubernetesResourceCheckWaitFor"
}
},
"required": [
"name",
"resources"
],
"type": "object"
},
"KubernetesResourceCheckRetries": {
"additionalProperties": false,
"properties": {
"delay": {
"type": "string"
},
"interval": {
"type": "string"
},
"timeout": {
"type": "string"
}
},
"type": "object"
},
"KubernetesResourceCheckWaitFor": {
"additionalProperties": false,
"properties": {
"delete": {
"type": "boolean"
},
"disable": {
"type": "boolean"
},
"expr": {
"type": "string"
},
"interval": {
"type": "string"
},
"timeout": {
"type": "string"
}
},
"type": "object"
},
"KubernetesResourceChecks": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"catalog": {
"items": {
"$ref": "#/$defs/CatalogCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"gitProtocol": {
"items": {
"$ref": "#/$defs/GitProtocolCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"kubernetesResource": {
"items": {
"$ref": "#/$defs/KubernetesResourceCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"Lookup": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LookupSpec": {
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/$defs/Lookup"
},
"namespace": {
"$ref": "#/$defs/Lookup"
},
"type": {
"$ref": "#/$defs/Lookup"
}
},
"type": "object"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"S3Connection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"Unstructured": {
"additionalProperties": false,
"properties": {
"Object": {
"type": "object"
}
},
"required": [
"Object"
],
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/canary",
"$ref": "#/$defs/Canary",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 311edab23ceae9c5620622500d40cb2aa57b35fd | 2023-12-08T01:53:27 | config/schemas/health_mysql.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/mysql-check",
"$ref": "#/$defs/MysqlCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 8278f04f40a28394b1234e2fd381bc448a3ce6a7 | 2023-10-17T09:10:11 | config/schemas/component.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"Component": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/ComponentSpec"
},
"status": {
"$ref": "#/$defs/ComponentStatus"
}
},
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentStatus": {
"additionalProperties": false,
"properties": {
"status": {
"type": "string"
}
},
"type": "object"
},
"Config": {
"additionalProperties": false,
"properties": {
"id": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/Config"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/component",
"$ref": "#/$defs/Component",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 7615b353e5bfe91baa43265f81501faef2bd0c77 | 2023-08-23T14:33:22 | config/schemas/health_mssql.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/mssql-check",
"$ref": "#/$defs/MssqlCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 23a2a70ba2388a6bc87b1e874d768cdf83492dbc | 2023-07-18T18:11:58 | config/schemas/health_ec2.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"name": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/ec2-check",
"$ref": "#/$defs/EC2Check",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | e34968108258040c0ff2f3e31707015dca672942 | 2023-12-29T13:55:21 | config/schemas/canary.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"relationships": {
"$ref": "#/$defs/CheckRelationship"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"Canary": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/CanarySpec"
},
"status": {
"$ref": "#/$defs/CanaryStatus"
}
},
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CanaryStatus": {
"additionalProperties": false,
"properties": {
"checkStatus": {
"patternProperties": {
".*": {
"$ref": "#/$defs/CheckStatus"
}
},
"type": "object"
},
"checks": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"errorMessage": {
"type": "string"
},
"lastCheck": {
"$ref": "#/$defs/Time"
},
"lastTransitionedTime": {
"$ref": "#/$defs/Time"
},
"latency1h": {
"type": "string"
},
"message": {
"type": "string"
},
"observedGeneration": {
"type": "integer"
},
"persistedID": {
"type": "string"
},
"replicas": {
"type": "integer"
},
"status": {
"type": "string"
},
"uptime1h": {
"type": "string"
}
},
"type": "object"
},
"CheckRelationship": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
}
},
"type": "object"
},
"CheckStatus": {
"additionalProperties": false,
"properties": {
"errorMessage": {
"type": "string"
},
"lastCheck": {
"$ref": "#/$defs/Time"
},
"lastTransitionedTime": {
"$ref": "#/$defs/Time"
},
"latency1h": {
"type": "string"
},
"message": {
"type": "string"
},
"uptime1h": {
"type": "string"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/S3Connection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCSConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GCSConnection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceSelector": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"Lookup": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LookupSpec": {
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/$defs/Lookup"
},
"namespace": {
"$ref": "#/$defs/Lookup"
},
"type": {
"$ref": "#/$defs/Lookup"
}
},
"type": "object"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"S3Connection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/canary",
"$ref": "#/$defs/Canary",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 7615b353e5bfe91baa43265f81501faef2bd0c77 | 2023-08-23T14:33:22 | config/schemas/health_junit.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"JunitCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/junit-check",
"$ref": "#/$defs/JunitCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | c09058c59a2876838927f8d5e175db299d802c66 | 2023-08-25T08:32:59 | config/schemas/health_restic.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/restic-check",
"$ref": "#/$defs/ResticCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 9348b546a3be81deb8345aa616266fe146d3f2ee | 2024-04-10T05:34:27 | config/schemas/topology.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"relationships": {
"$ref": "#/$defs/CheckRelationship"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"catalog": {
"items": {
"$ref": "#/$defs/CatalogCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"gitProtocol": {
"items": {
"$ref": "#/$defs/GitProtocolCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"kubernetesResource": {
"items": {
"$ref": "#/$defs/KubernetesResourceCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CatalogCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"selector": {
"$ref": "#/$defs/ResourceSelectors"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"selector"
],
"type": "object"
},
"CheckRelationship": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"$ref": "#/$defs/ConfigQueries"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"hidden": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"parentLookup": {
"$ref": "#/$defs/ParentLookup"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"$ref": "#/$defs/ConfigQueries"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"hidden": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"parentLookup": {
"$ref": "#/$defs/ParentLookup"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/ConfigQuery"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ConfigQueries": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"ConfigQuery": {
"additionalProperties": false,
"properties": {
"agent": {
"type": "string"
},
"cache": {
"type": "string"
},
"class": {
"type": "string"
},
"external_id": {
"type": "string"
},
"fieldSelector": {
"type": "string"
},
"id": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"statuses": {
"$ref": "#/$defs/Items"
},
"tagSelector": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
},
"types": {
"$ref": "#/$defs/Items"
}
},
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/S3Connection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCSConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GCSConnection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"GitProtocolCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filename": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"repository",
"username",
"password"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Items": {
"items": {
"type": "string"
},
"type": "array"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"kubeconfig": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceSelector": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"KubernetesResourceCheck": {
"additionalProperties": false,
"properties": {
"checkRetries": {
"$ref": "#/$defs/KubernetesResourceCheckRetries"
},
"checks": {
"items": {
"$ref": "#/$defs/KubernetesResourceChecks"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"kubeconfig": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"resources": {
"items": {
"$ref": "#/$defs/Unstructured"
},
"type": "array"
},
"staticResources": {
"items": {
"$ref": "#/$defs/Unstructured"
},
"type": "array"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"waitFor": {
"$ref": "#/$defs/KubernetesResourceCheckWaitFor"
}
},
"required": [
"name",
"resources"
],
"type": "object"
},
"KubernetesResourceCheckRetries": {
"additionalProperties": false,
"properties": {
"delay": {
"type": "string"
},
"interval": {
"type": "string"
},
"maxRetries": {
"type": "integer"
},
"timeout": {
"type": "string"
}
},
"type": "object"
},
"KubernetesResourceCheckWaitFor": {
"additionalProperties": false,
"properties": {
"disable": {
"type": "boolean"
},
"expr": {
"type": "string"
},
"interval": {
"type": "string"
},
"maxRetries": {
"type": "integer"
},
"timeout": {
"type": "string"
}
},
"type": "object"
},
"KubernetesResourceChecks": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"catalog": {
"items": {
"$ref": "#/$defs/CatalogCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"gitProtocol": {
"items": {
"$ref": "#/$defs/GitProtocolCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"kubernetesResource": {
"items": {
"$ref": "#/$defs/KubernetesResourceCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"Lookup": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LookupSpec": {
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/$defs/Lookup"
},
"namespace": {
"$ref": "#/$defs/Lookup"
},
"type": {
"$ref": "#/$defs/Lookup"
}
},
"type": "object"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"ParentLookup": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"S3Connection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"checks": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
},
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"Topology": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/TopologySpec"
},
"status": {
"$ref": "#/$defs/TopologyStatus"
}
},
"type": "object"
},
"TopologySpec": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"label": {
"type": "string"
},
"owner": {
"type": "string"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"schedule": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"TopologyStatus": {
"additionalProperties": false,
"properties": {
"observedGeneration": {
"type": "integer"
},
"persistentID": {
"type": "string"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"Unstructured": {
"additionalProperties": false,
"properties": {
"Object": {
"type": "object"
}
},
"required": [
"Object"
],
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/topology",
"$ref": "#/$defs/Topology",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 4ae4cdfee4fef5f4d1240d31f682cdd78529fd0e | 2023-07-03T05:29:13 | config/schemas/health_jmeter.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"name": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/jmeter-check",
"$ref": "#/$defs/JmeterCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | efe0533129fa38051b5069cbf4ba78fd83a1f5be | 2023-12-27T05:28:48 | config/schemas/health_folder.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/S3Connection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCSConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"GCSConnection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"S3Connection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"inline": {
"$ref": "#/$defs/AWSConnection"
},
"objectPath": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"inline"
],
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/folder-check",
"$ref": "#/$defs/FolderCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | ed6077948be6923ac96d38fdc6ec19f059b55453 | 2023-12-20T19:54:32 | config/schemas/topology.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"relationships": {
"$ref": "#/$defs/CheckRelationship"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CheckRelationship": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"Config": {
"additionalProperties": false,
"properties": {
"id": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/Config"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"Lookup": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LookupSpec": {
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/$defs/Lookup"
},
"namespace": {
"$ref": "#/$defs/Lookup"
},
"type": {
"$ref": "#/$defs/Lookup"
}
},
"type": "object"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"Topology": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/TopologySpec"
},
"status": {
"$ref": "#/$defs/TopologyStatus"
}
},
"type": "object"
},
"TopologySpec": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"label": {
"type": "string"
},
"owner": {
"type": "string"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"schedule": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"TopologyStatus": {
"additionalProperties": false,
"properties": {
"observedGeneration": {
"type": "integer"
},
"persistentID": {
"type": "string"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/topology",
"$ref": "#/$defs/Topology",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 18b231591fd747c966a1e51d2536d28687fdc2b5 | 2023-11-09T12:40:33 | config/schemas/health_restic.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/restic-check",
"$ref": "#/$defs/ResticCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 750ea1416a33822d9bd5cef412e39c1149cca848 | 2024-03-15T06:00:37 | config/schemas/health_catalog.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"CatalogCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"selector": {
"$ref": "#/$defs/ResourceSelectors"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"selector"
],
"type": "object"
},
"Items": {
"items": {
"type": "string"
},
"type": "array"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"agent": {
"type": "string"
},
"cache": {
"type": "string"
},
"fieldSelector": {
"type": "string"
},
"id": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"statuses": {
"$ref": "#/$defs/Items"
},
"types": {
"$ref": "#/$defs/Items"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/catalog-check",
"$ref": "#/$defs/CatalogCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 726174085ad8ce66d13f7b8ea176bb4a2019cb8e | 2023-05-17T12:17:00 | config/schemas/health_helm.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$ref": "#/definitions/HelmCheck",
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/definitions/EnvVar"
},
"username": {
"$ref": "#/definitions/EnvVar",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"required": [
"username",
"password"
],
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/definitions/EnvVarSource",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/definitions/ConfigMapKeySelector",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"secretKeyRef": {
"$ref": "#/definitions/SecretKeySelector",
"$schema": "http://json-schema.org/draft-04/schema#"
}
},
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/definitions/Authentication",
"$schema": "http://json-schema.org/draft-04/schema#"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
}
}
} | Apache-2.0 | en |
flanksource/canary-checker | c09058c59a2876838927f8d5e175db299d802c66 | 2023-08-25T08:32:59 | config/schemas/health_redis.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/redis-check",
"$ref": "#/$defs/RedisCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 18b231591fd747c966a1e51d2536d28687fdc2b5 | 2023-11-09T12:40:33 | config/schemas/component.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"Component": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/ComponentSpec"
},
"status": {
"$ref": "#/$defs/ComponentStatus"
}
},
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentStatus": {
"additionalProperties": false,
"properties": {
"status": {
"type": "string"
}
},
"type": "object"
},
"Config": {
"additionalProperties": false,
"properties": {
"id": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/Config"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/AWSConnection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/Config"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/component",
"$ref": "#/$defs/Component",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 2a7e03113e8bc3ff1c112e85f0f9746e59bcd481 | 2023-12-27T19:41:53 | config/schemas/health_folder.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/S3Connection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCSConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"GCSConnection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"S3Connection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/folder-check",
"$ref": "#/$defs/FolderCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | 18b231591fd747c966a1e51d2536d28687fdc2b5 | 2023-11-09T12:40:33 | config/schemas/health_pod.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/pod-check",
"$ref": "#/$defs/PodCheck",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |
flanksource/canary-checker | a0bd684e8406fbd428a90eeac15365e4235b8063 | 2024-03-26T09:21:23 | config/schemas/topology.schema.json | 156 | 2024-05-28T05:48:37.367425Z | {
"$defs": {
"AWSConnection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
}
},
"type": "object"
},
"AlertManagerCheck": {
"additionalProperties": false,
"properties": {
"alerts": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"exclude_filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"relationships": {
"$ref": "#/$defs/CheckRelationship"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"Artifact": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"Authentication": {
"additionalProperties": false,
"properties": {
"password": {
"$ref": "#/$defs/EnvVar"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"AwsConfigCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"aggregatorName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"AwsConfigRuleCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"complianceTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"ignoreRules": {
"items": {
"type": "string"
},
"type": "array"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"rules": {
"items": {
"type": "string"
},
"type": "array"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"AzureConnection": {
"additionalProperties": false,
"properties": {
"clientID": {
"$ref": "#/$defs/EnvVar"
},
"clientSecret": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"tenantID": {
"type": "string"
}
},
"type": "object"
},
"AzureDevopsCheck": {
"additionalProperties": false,
"properties": {
"branch": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"organization": {
"type": "string"
},
"personalAccessToken": {
"$ref": "#/$defs/EnvVar"
},
"pipeline": {
"type": "string"
},
"project": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"variables": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"name",
"organization",
"personalAccessToken",
"project",
"pipeline",
"variables",
"branch",
"thresholdMillis"
],
"type": "object"
},
"CanarySpec": {
"additionalProperties": false,
"properties": {
"alertmanager": {
"items": {
"$ref": "#/$defs/AlertManagerCheck"
},
"type": "array"
},
"awsConfig": {
"items": {
"$ref": "#/$defs/AwsConfigCheck"
},
"type": "array"
},
"awsConfigRule": {
"items": {
"$ref": "#/$defs/AwsConfigRuleCheck"
},
"type": "array"
},
"azureDevops": {
"items": {
"$ref": "#/$defs/AzureDevopsCheck"
},
"type": "array"
},
"catalog": {
"items": {
"$ref": "#/$defs/CatalogCheck"
},
"type": "array"
},
"cloudwatch": {
"items": {
"$ref": "#/$defs/CloudWatchCheck"
},
"type": "array"
},
"configDB": {
"items": {
"$ref": "#/$defs/ConfigDBCheck"
},
"type": "array"
},
"containerd": {
"items": {
"$ref": "#/$defs/ContainerdPullCheck"
},
"type": "array"
},
"containerdPush": {
"items": {
"$ref": "#/$defs/ContainerdPushCheck"
},
"type": "array"
},
"databaseBackup": {
"items": {
"$ref": "#/$defs/DatabaseBackupCheck"
},
"type": "array"
},
"dns": {
"items": {
"$ref": "#/$defs/DNSCheck"
},
"type": "array"
},
"docker": {
"items": {
"$ref": "#/$defs/DockerPullCheck"
},
"type": "array"
},
"dockerPush": {
"items": {
"$ref": "#/$defs/DockerPushCheck"
},
"type": "array"
},
"dynatrace": {
"items": {
"$ref": "#/$defs/DynatraceCheck"
},
"type": "array"
},
"ec2": {
"items": {
"$ref": "#/$defs/EC2Check"
},
"type": "array"
},
"elasticsearch": {
"items": {
"$ref": "#/$defs/ElasticsearchCheck"
},
"type": "array"
},
"env": {
"patternProperties": {
".*": {
"$ref": "#/$defs/VarSource"
}
},
"type": "object"
},
"exec": {
"items": {
"$ref": "#/$defs/ExecCheck"
},
"type": "array"
},
"folder": {
"items": {
"$ref": "#/$defs/FolderCheck"
},
"type": "array"
},
"gitProtocol": {
"items": {
"$ref": "#/$defs/GitProtocolCheck"
},
"type": "array"
},
"github": {
"items": {
"$ref": "#/$defs/GitHubCheck"
},
"type": "array"
},
"helm": {
"items": {
"$ref": "#/$defs/HelmCheck"
},
"type": "array"
},
"http": {
"items": {
"$ref": "#/$defs/HTTPCheck"
},
"type": "array"
},
"icmp": {
"items": {
"$ref": "#/$defs/ICMPCheck"
},
"type": "array"
},
"icon": {
"type": "string"
},
"interval": {
"type": "integer"
},
"jmeter": {
"items": {
"$ref": "#/$defs/JmeterCheck"
},
"type": "array"
},
"junit": {
"items": {
"$ref": "#/$defs/JunitCheck"
},
"type": "array"
},
"kubernetes": {
"items": {
"$ref": "#/$defs/KubernetesCheck"
},
"type": "array"
},
"ldap": {
"items": {
"$ref": "#/$defs/LDAPCheck"
},
"type": "array"
},
"mongodb": {
"items": {
"$ref": "#/$defs/MongoDBCheck"
},
"type": "array"
},
"mssql": {
"items": {
"$ref": "#/$defs/MssqlCheck"
},
"type": "array"
},
"mysql": {
"items": {
"$ref": "#/$defs/MysqlCheck"
},
"type": "array"
},
"namespace": {
"items": {
"$ref": "#/$defs/NamespaceCheck"
},
"type": "array"
},
"opensearch": {
"items": {
"$ref": "#/$defs/OpenSearchCheck"
},
"type": "array"
},
"owner": {
"type": "string"
},
"pod": {
"items": {
"$ref": "#/$defs/PodCheck"
},
"type": "array"
},
"postgres": {
"items": {
"$ref": "#/$defs/PostgresCheck"
},
"type": "array"
},
"prometheus": {
"items": {
"$ref": "#/$defs/PrometheusCheck"
},
"type": "array"
},
"redis": {
"items": {
"$ref": "#/$defs/RedisCheck"
},
"type": "array"
},
"replicas": {
"type": "integer"
},
"restic": {
"items": {
"$ref": "#/$defs/ResticCheck"
},
"type": "array"
},
"resultMode": {
"type": "string"
},
"s3": {
"items": {
"$ref": "#/$defs/S3Check"
},
"type": "array"
},
"schedule": {
"type": "string"
},
"severity": {
"type": "string"
},
"tcp": {
"items": {
"$ref": "#/$defs/TCPCheck"
},
"type": "array"
},
"webhook": {
"$ref": "#/$defs/WebhookCheck"
}
},
"type": "object"
},
"CatalogCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"selector": {
"$ref": "#/$defs/ResourceSelectors"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"selector"
],
"type": "object"
},
"CheckRelationship": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/LookupSpec"
},
"type": "array"
}
},
"type": "object"
},
"CloudWatchCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"actionPrefix": {
"type": "string"
},
"alarmPrefix": {
"type": "string"
},
"alarms": {
"items": {
"type": "string"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"state": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"ComponentCheck": {
"additionalProperties": false,
"properties": {
"inline": {
"$ref": "#/$defs/CanarySpec"
},
"selector": {
"$ref": "#/$defs/ResourceSelector"
}
},
"type": "object"
},
"ComponentChecks": {
"items": {
"$ref": "#/$defs/ComponentCheck"
},
"type": "array"
},
"ComponentSpec": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"$ref": "#/$defs/ConfigQueries"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"hidden": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"parentLookup": {
"$ref": "#/$defs/ParentLookup"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ComponentSpecObject": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpecObject"
},
"type": "array"
},
"configs": {
"$ref": "#/$defs/ConfigQueries"
},
"forEach": {
"$ref": "#/$defs/ForEach"
},
"hidden": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"lifecycle": {
"type": "string"
},
"logs": {
"$ref": "#/$defs/LogSelectors"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"order": {
"type": "integer"
},
"owner": {
"type": "string"
},
"parentLookup": {
"$ref": "#/$defs/ParentLookup"
},
"properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
},
"summary": {
"$ref": "#/$defs/Summary"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ConfigDBCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"ConfigLookup": {
"additionalProperties": false,
"properties": {
"config": {
"$ref": "#/$defs/ConfigQuery"
},
"display": {
"$ref": "#/$defs/Display"
},
"field": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"ConfigMapKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"ConfigQueries": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"ConfigQuery": {
"additionalProperties": false,
"properties": {
"agent": {
"type": "string"
},
"cache": {
"type": "string"
},
"class": {
"type": "string"
},
"external_id": {
"type": "string"
},
"fieldSelector": {
"type": "string"
},
"id": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"statuses": {
"$ref": "#/$defs/Items"
},
"tags": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
},
"types": {
"$ref": "#/$defs/Items"
}
},
"type": "object"
},
"ContainerdPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"ContainerdPushCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DNSCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"exactreply": {
"items": {
"type": "string"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minrecords": {
"type": "integer"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"query": {
"type": "string"
},
"querytype": {
"type": "string"
},
"server": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"DatabaseBackupCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"gcp": {
"$ref": "#/$defs/GCPDatabase"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Display": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"DockerPullCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"expectedDigest": {
"type": "string"
},
"expectedSize": {
"type": "integer"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DockerPushCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"image"
],
"type": "object"
},
"DynatraceCheck": {
"additionalProperties": false,
"properties": {
"apiKey": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"scheme": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"EC2Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"ami": {
"type": "string"
},
"canaryRef": {
"items": {
"$ref": "#/$defs/LocalObjectReference"
},
"type": "array"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"keepAlive": {
"type": "boolean"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"securityGroup": {
"type": "string"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"timeOut": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
},
"userData": {
"type": "string"
},
"waitTime": {
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
},
"ElasticsearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"EnvVar": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/$defs/EnvVarSource"
}
},
"type": "object"
},
"EnvVarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"helmRef": {
"$ref": "#/$defs/HelmRefKeySelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"serviceAccount": {
"type": "string"
}
},
"type": "object"
},
"ExecCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"checkout": {
"$ref": "#/$defs/GitCheckout"
},
"connections": {
"$ref": "#/$defs/ExecConnections"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"script": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"script"
],
"type": "object"
},
"ExecConnections": {
"additionalProperties": false,
"properties": {
"aws": {
"$ref": "#/$defs/AWSConnection"
},
"azure": {
"$ref": "#/$defs/AzureConnection"
},
"gcp": {
"$ref": "#/$defs/GCPConnection"
}
},
"type": "object"
},
"FieldsV1": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"FolderCheck": {
"additionalProperties": false,
"properties": {
"availableSize": {
"type": "string"
},
"awsConnection": {
"$ref": "#/$defs/S3Connection"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filter": {
"$ref": "#/$defs/FolderFilter"
},
"gcpConnection": {
"$ref": "#/$defs/GCSConnection"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"maxCount": {
"type": "integer"
},
"maxSize": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"minAge": {
"type": "string"
},
"minCount": {
"type": "integer"
},
"minSize": {
"type": "string"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
},
"sftpConnection": {
"$ref": "#/$defs/SFTPConnection"
},
"smbConnection": {
"$ref": "#/$defs/SMBConnection"
},
"test": {
"$ref": "#/$defs/Template"
},
"totalSize": {
"type": "string"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"path"
],
"type": "object"
},
"FolderFilter": {
"additionalProperties": false,
"properties": {
"maxAge": {
"type": "string"
},
"maxSize": {
"type": "string"
},
"minAge": {
"type": "string"
},
"minSize": {
"type": "string"
},
"regex": {
"type": "string"
},
"since": {
"type": "string"
}
},
"type": "object"
},
"ForEach": {
"additionalProperties": false,
"properties": {
"checks": {
"$ref": "#/$defs/ComponentChecks"
},
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"relationships": {
"items": {
"$ref": "#/$defs/RelationshipSpec"
},
"type": "array"
},
"selectors": {
"$ref": "#/$defs/ResourceSelectors"
}
},
"type": "object"
},
"GCPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GCPDatabase": {
"additionalProperties": false,
"properties": {
"gcpConnection": {
"$ref": "#/$defs/GCPConnection"
},
"instance": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"project",
"instance"
],
"type": "object"
},
"GCSConnection": {
"additionalProperties": false,
"properties": {
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"credentials": {
"$ref": "#/$defs/EnvVar"
},
"endpoint": {
"type": "string"
}
},
"type": "object"
},
"GitCheckout": {
"additionalProperties": false,
"properties": {
"certificate": {
"$ref": "#/$defs/EnvVar"
},
"connection": {
"type": "string"
},
"destination": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"GitHubCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"githubToken": {
"$ref": "#/$defs/EnvVar"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"GitProtocolCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"filename": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"repository",
"username",
"password"
],
"type": "object"
},
"HTTPCheck": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"endpoint": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"headers": {
"items": {
"$ref": "#/$defs/EnvVar"
},
"type": "array"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxSSLExpiry": {
"type": "integer"
},
"method": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ntlm": {
"type": "boolean"
},
"ntlmv2": {
"type": "boolean"
},
"oauth2": {
"$ref": "#/$defs/Oauth2Config"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"responseCodes": {
"items": {
"type": "integer"
},
"type": "array"
},
"responseContent": {
"type": "string"
},
"responseJSONContent": {
"$ref": "#/$defs/JSONCheck"
},
"templateBody": {
"type": "boolean"
},
"test": {
"$ref": "#/$defs/Template"
},
"thresholdMillis": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmCheck": {
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/$defs/Authentication"
},
"cafile": {
"type": "string"
},
"chartmuseum": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"project": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"HelmRefKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"ICMPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"packetCount": {
"type": "integer"
},
"packetLossThreshold": {
"type": "integer"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Items": {
"items": {
"type": "string"
},
"type": "array"
},
"JSONCheck": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
},
"JmeterCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"jmx": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"port": {
"type": "integer"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"responseDuration": {
"type": "string"
},
"systemProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"jmx"
],
"type": "object"
},
"JunitCheck": {
"additionalProperties": false,
"properties": {
"artifacts": {
"items": {
"$ref": "#/$defs/Artifact"
},
"type": "array"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"spec": true,
"test": {
"$ref": "#/$defs/Template"
},
"testResults": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"testResults",
"spec"
],
"type": "object"
},
"KubernetesCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"type": "string"
},
"kubeconfig": {
"$ref": "#/$defs/EnvVar"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceSelector": {
"$ref": "#/$defs/ResourceSelector"
},
"ready": {
"type": "boolean"
},
"resource": {
"$ref": "#/$defs/ResourceSelector"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"kind"
],
"type": "object"
},
"LDAPCheck": {
"additionalProperties": false,
"properties": {
"bindDN": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"userSearch": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"bindDN"
],
"type": "object"
},
"Labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"Link": {
"additionalProperties": false,
"properties": {
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LocalObjectReference": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LogSelector": {
"additionalProperties": false,
"properties": {
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LogSelectors": {
"items": {
"$ref": "#/$defs/LogSelector"
},
"type": "array"
},
"Lookup": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LookupSpec": {
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/$defs/Lookup"
},
"namespace": {
"$ref": "#/$defs/Lookup"
},
"type": {
"$ref": "#/$defs/Lookup"
}
},
"type": "object"
},
"ManagedFieldsEntry": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/$defs/FieldsV1"
},
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"subresource": {
"type": "string"
},
"time": {
"$ref": "#/$defs/Time"
}
},
"type": "object"
},
"MetricLabel": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueExpr": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"MetricLabels": {
"items": {
"$ref": "#/$defs/MetricLabel"
},
"type": "array"
},
"Metrics": {
"additionalProperties": false,
"properties": {
"labels": {
"$ref": "#/$defs/MetricLabels"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"MongoDBCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MssqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"MysqlCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"NamespaceCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaceAnnotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"namespaceNamePrefix": {
"type": "string"
},
"path": {
"type": "string"
},
"podSpec": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"schedule_timeout": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"podSpec"
],
"type": "object"
},
"Oauth2Config": {
"additionalProperties": false,
"properties": {
"params": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"tokenURL": {
"type": "string"
}
},
"type": "object"
},
"ObjectFieldSelector": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"ObjectMeta": {
"additionalProperties": false,
"properties": {
"annotations": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"creationTimestamp": {
"$ref": "#/$defs/Time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/$defs/Time"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"generateName": {
"type": "string"
},
"generation": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"managedFields": {
"items": {
"$ref": "#/$defs/ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"ownerReferences": {
"items": {
"$ref": "#/$defs/OwnerReference"
},
"type": "array"
},
"resourceVersion": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"type": "object"
},
"OpenSearchCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"index": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query",
"index"
],
"type": "object"
},
"OwnerReference": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"blockOwnerDeletion": {
"type": "boolean"
},
"controller": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"ParentLookup": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"PodCheck": {
"additionalProperties": false,
"properties": {
"deadline": {
"type": "integer"
},
"deleteTimeout": {
"type": "integer"
},
"description": {
"type": "string"
},
"expectedContent": {
"type": "string"
},
"expectedHttpStatuses": {
"items": {
"type": "integer"
},
"type": "array"
},
"httpRetryInterval": {
"type": "integer"
},
"httpTimeout": {
"type": "integer"
},
"icon": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"ingressHost": {
"type": "string"
},
"ingressName": {
"type": "string"
},
"ingressTimeout": {
"type": "integer"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "integer"
},
"priorityClass": {
"type": "string"
},
"readyTimeout": {
"type": "integer"
},
"roundRobinNodes": {
"type": "boolean"
},
"scheduleTimeout": {
"type": "integer"
},
"spec": {
"type": "string"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"PostgresCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"results": {
"type": "integer"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"PrometheusCheck": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"host": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"query": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name",
"query"
],
"type": "object"
},
"Properties": {
"items": {
"$ref": "#/$defs/Property"
},
"type": "array"
},
"Property": {
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"configLookup": {
"$ref": "#/$defs/ConfigLookup"
},
"headline": {
"type": "boolean"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"lastTransition": {
"type": "string"
},
"links": {
"items": {
"$ref": "#/$defs/Link"
},
"type": "array"
},
"lookup": {
"$ref": "#/$defs/CanarySpec"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"name": {
"type": "string"
},
"order": {
"type": "integer"
},
"status": {
"type": "string"
},
"summary": {
"$ref": "#/$defs/Template"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"RedisCheck": {
"additionalProperties": false,
"properties": {
"addr": {
"type": "string"
},
"connection": {
"type": "string"
},
"db": {
"type": "integer"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
},
"url": {
"type": "string"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"name"
],
"type": "object"
},
"RelationshipSpec": {
"additionalProperties": false,
"properties": {
"ref": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelector": {
"additionalProperties": false,
"properties": {
"fieldSelector": {
"type": "string"
},
"labelSelector": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ResourceSelectors": {
"items": {
"$ref": "#/$defs/ResourceSelector"
},
"type": "array"
},
"ResticCheck": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"awsConnectionName": {
"type": "string"
},
"caCert": {
"type": "string"
},
"checkIntegrity": {
"type": "boolean"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"maxAge": {
"type": "string"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"repository": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name",
"repository",
"password",
"maxAge"
],
"type": "object"
},
"S3Check": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"bucketName": {
"type": "string"
},
"connection": {
"type": "string"
},
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"transformDeleteStrategy": {
"type": "string"
},
"usePathStyle": {
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
},
"S3Connection": {
"additionalProperties": false,
"properties": {
"accessKey": {
"$ref": "#/$defs/EnvVar"
},
"bucket": {
"type": "string"
},
"connection": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"objectPath": {
"type": "string"
},
"region": {
"type": "string"
},
"secretKey": {
"$ref": "#/$defs/EnvVar"
},
"sessionToken": {
"$ref": "#/$defs/EnvVar"
},
"skipTLSVerify": {
"type": "boolean"
},
"usePathStyle": {
"type": "boolean"
}
},
"type": "object"
},
"SFTPConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"required": [
"host"
],
"type": "object"
},
"SMBConnection": {
"additionalProperties": false,
"properties": {
"connection": {
"type": "string"
},
"domain": {
"type": "string"
},
"password": {
"$ref": "#/$defs/EnvVar"
},
"port": {
"type": "integer"
},
"username": {
"$ref": "#/$defs/EnvVar"
}
},
"type": "object"
},
"SecretKeySelector": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"Summary": {
"additionalProperties": false,
"properties": {
"checks": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
},
"healthy": {
"type": "integer"
},
"incidents": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"info": {
"type": "integer"
},
"insights": {
"patternProperties": {
".*": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"unhealthy": {
"type": "integer"
},
"warning": {
"type": "integer"
}
},
"type": "object"
},
"TCPCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"thresholdMillis": {
"type": "integer"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"Template": {
"additionalProperties": false,
"properties": {
"expr": {
"type": "string"
},
"javascript": {
"type": "string"
},
"jsonPath": {
"type": "string"
},
"template": {
"type": "string"
}
},
"type": "object"
},
"Time": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"Topology": {
"additionalProperties": false,
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"$ref": "#/$defs/ObjectMeta"
},
"spec": {
"$ref": "#/$defs/TopologySpec"
},
"status": {
"$ref": "#/$defs/TopologyStatus"
}
},
"type": "object"
},
"TopologySpec": {
"additionalProperties": false,
"properties": {
"components": {
"items": {
"$ref": "#/$defs/ComponentSpec"
},
"type": "array"
},
"configs": {
"items": {
"$ref": "#/$defs/ConfigQuery"
},
"type": "array"
},
"icon": {
"type": "string"
},
"id": {
"$ref": "#/$defs/Template"
},
"label": {
"type": "string"
},
"owner": {
"type": "string"
},
"properties": {
"$ref": "#/$defs/Properties"
},
"schedule": {
"type": "string"
},
"text": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"TopologyStatus": {
"additionalProperties": false,
"properties": {
"observedGeneration": {
"type": "integer"
},
"persistentID": {
"type": "string"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"VarSource": {
"additionalProperties": false,
"properties": {
"configMapKeyRef": {
"$ref": "#/$defs/ConfigMapKeySelector"
},
"fieldRef": {
"$ref": "#/$defs/ObjectFieldSelector"
},
"secretKeyRef": {
"$ref": "#/$defs/SecretKeySelector"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"WebhookCheck": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"display": {
"$ref": "#/$defs/Template"
},
"icon": {
"type": "string"
},
"labels": {
"$ref": "#/$defs/Labels"
},
"metrics": {
"items": {
"$ref": "#/$defs/Metrics"
},
"type": "array"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"test": {
"$ref": "#/$defs/Template"
},
"token": {
"$ref": "#/$defs/EnvVar"
},
"transform": {
"$ref": "#/$defs/Template"
},
"transformDeleteStrategy": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"$id": "https://github.com/flanksource/canary-checker/api/v1/topology",
"$ref": "#/$defs/Topology",
"$schema": "https://json-schema.org/draft/2020-12/schema"
} | Apache-2.0 | en |