Path: blob/main/components/ee/agent-smith/config-schema.json
2497 views
{1"$schema": "http://json-schema.org/draft-04/schema#",2"$ref": "#/definitions/config",3"title": "agent-smith config schema - generated using agent-smith config-schema",4"definitions": {5"": {6"required": [7"hostURL",8"apiToken"9],10"properties": {11"hostURL": {12"type": "string"13},14"apiToken": {15"type": "string"16}17},18"additionalProperties": false,19"type": "object"20},21"config": {22"required": [23"gitpodAPI",24"namespace"25],26"properties": {27"gitpodAPI": {28"$schema": "http://json-schema.org/draft-04/schema#",29"$ref": "#/definitions/"30},31"namespace": {32"type": "string"33},34"blacklists": {35"$ref": "#/definitions/"36},37"enforcement": {38"$ref": "#/definitions/"39},40"excessiveCPUCheck": {41"$ref": "#/definitions/"42},43"slackWebhooks": {44"$ref": "#/definitions/"45},46"probePath": {47"type": "string"48},49"pprofAddr": {50"type": "string"51},52"prometheusAddr": {53"type": "string"54},55"systemMemoryLimitMib": {56"type": "integer"57}58},59"additionalProperties": false,60"type": "object"61}62}63}6465