Skip to content

Commit 8ca8987

Browse files
Updating config schema.
1 parent a6de9fd commit 8ca8987

File tree

1 file changed

+34
-34
lines changed

1 file changed

+34
-34
lines changed

config_schema.json

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,33 @@
11
{
22
"fields": [
33
{
4-
"name": "sync-secrets",
5-
"description": "Whether to sync secrets or not",
4+
"name": "otel-collector-endpoint-tls-insecure",
5+
"description": "Allow insecure connections to the OpenTelemetry collector",
6+
"isOps": true,
67
"boolField": {}
78
},
89
{
9-
"name": "otel-collector-endpoint-tls-cert",
10-
"description": "A PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
10+
"name": "log-level",
11+
"description": "The log level: debug, info, warn, error",
1112
"isOps": true,
12-
"stringField": {}
13+
"stringField": {
14+
"defaultValue": "info"
15+
}
1316
},
1417
{
15-
"name": "otel-logging-disabled",
16-
"description": "Disable OpenTelemetry logging",
17-
"isOps": true,
18+
"name": "sync-secrets",
19+
"description": "Whether to sync secrets or not",
1820
"boolField": {}
1921
},
2022
{
21-
"name": "instance-url",
22-
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
23+
"name": "app-id",
24+
"description": "The GitHub App to connect to.",
25+
"stringField": {}
26+
},
27+
{
28+
"name": "otel-collector-endpoint-tls-cert-path",
29+
"description": "Path to a file containing a PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
30+
"isOps": true,
2331
"stringField": {}
2432
},
2533
{
@@ -28,49 +36,41 @@
2836
"stringField": {}
2937
},
3038
{
31-
"name": "otel-collector-endpoint",
32-
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
33-
"isOps": true,
39+
"name": "instance-url",
40+
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
3441
"stringField": {}
3542
},
3643
{
37-
"name": "otel-collector-endpoint-tls-cert-path",
38-
"description": "Path to a file containing a PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
44+
"name": "otel-collector-endpoint",
45+
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
3946
"isOps": true,
4047
"stringField": {}
4148
},
4249
{
43-
"name": "otel-tracing-disabled",
44-
"description": "Disable OpenTelemetry tracing",
50+
"name": "otel-logging-disabled",
51+
"description": "Disable OpenTelemetry logging",
4552
"isOps": true,
4653
"boolField": {}
4754
},
48-
{
49-
"name": "app-privatekey-path",
50-
"description": "Path to private key that is used to connect to the GitHub App",
51-
"stringField": {}
52-
},
53-
{
54-
"name": "app-id",
55-
"description": "The GitHub App to connect to.",
56-
"stringField": {}
57-
},
5855
{
5956
"name": "orgs",
6057
"description": "Limit syncing to specific organizations.",
6158
"stringSliceField": {}
6259
},
6360
{
64-
"name": "log-level",
65-
"description": "The log level: debug, info, warn, error",
61+
"name": "app-privatekey-path",
62+
"description": "Path to private key that is used to connect to the GitHub App",
63+
"stringField": {}
64+
},
65+
{
66+
"name": "otel-collector-endpoint-tls-cert",
67+
"description": "A PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
6668
"isOps": true,
67-
"stringField": {
68-
"defaultValue": "info"
69-
}
69+
"stringField": {}
7070
},
7171
{
72-
"name": "otel-collector-endpoint-tls-insecure",
73-
"description": "Allow insecure connections to the OpenTelemetry collector",
72+
"name": "otel-tracing-disabled",
73+
"description": "Disable OpenTelemetry tracing",
7474
"isOps": true,
7575
"boolField": {}
7676
}

0 commit comments

Comments
 (0)