Skip to content

Commit 0f29d6a

Browse files
Updating config schema.
1 parent 368b1a8 commit 0f29d6a

File tree

1 file changed

+35
-35
lines changed

1 file changed

+35
-35
lines changed

config_schema.json

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
{
22
"fields": [
33
{
4-
"name": "sync-secrets",
5-
"description": "Whether to sync secrets or not",
6-
"boolField": {}
7-
},
8-
{
9-
"name": "otel-collector-endpoint-tls-insecure",
10-
"description": "Allow insecure connections to the OpenTelemetry collector",
4+
"name": "otel-collector-endpoint",
5+
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
116
"isOps": true,
12-
"boolField": {}
13-
},
14-
{
15-
"name": "app-id",
16-
"description": "The GitHub App to connect to.",
177
"stringField": {}
188
},
199
{
@@ -22,24 +12,31 @@
2212
"stringField": {}
2313
},
2414
{
25-
"name": "log-level",
26-
"description": "The log level: debug, info, warn, error",
15+
"name": "otel-logging-disabled",
16+
"description": "Disable OpenTelemetry logging",
2717
"isOps": true,
28-
"stringField": {
29-
"defaultValue": "info"
30-
}
18+
"boolField": {}
3119
},
3220
{
33-
"name": "otel-collector-endpoint",
34-
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
35-
"isOps": true,
21+
"name": "token",
22+
"description": "The GitHub access token used to connect to the GitHub API.",
3623
"stringField": {}
3724
},
3825
{
39-
"name": "otel-collector-endpoint-tls-cert-path",
40-
"description": "Path to a file containing a PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
26+
"name": "orgs",
27+
"description": "Limit syncing to specific organizations.",
28+
"stringSliceField": {}
29+
},
30+
{
31+
"name": "otel-collector-endpoint-tls-insecure",
32+
"description": "Allow insecure connections to the OpenTelemetry collector",
4133
"isOps": true,
42-
"stringField": {}
34+
"boolField": {}
35+
},
36+
{
37+
"name": "sync-secrets",
38+
"description": "Whether to sync secrets or not",
39+
"boolField": {}
4340
},
4441
{
4542
"name": "otel-collector-endpoint-tls-cert",
@@ -48,14 +45,22 @@
4845
"stringField": {}
4946
},
5047
{
51-
"name": "otel-logging-disabled",
52-
"description": "Disable OpenTelemetry logging",
48+
"name": "app-id",
49+
"description": "The GitHub App to connect to.",
50+
"stringField": {}
51+
},
52+
{
53+
"name": "log-level",
54+
"description": "The log level: debug, info, warn, error",
5355
"isOps": true,
54-
"boolField": {}
56+
"stringField": {
57+
"defaultValue": "info"
58+
}
5559
},
5660
{
57-
"name": "instance-url",
58-
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
61+
"name": "otel-collector-endpoint-tls-cert-path",
62+
"description": "Path to a file containing a PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
63+
"isOps": true,
5964
"stringField": {}
6065
},
6166
{
@@ -65,13 +70,8 @@
6570
"boolField": {}
6671
},
6772
{
68-
"name": "orgs",
69-
"description": "Limit syncing to specific organizations.",
70-
"stringSliceField": {}
71-
},
72-
{
73-
"name": "token",
74-
"description": "The GitHub access token used to connect to the GitHub API.",
73+
"name": "instance-url",
74+
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
7575
"stringField": {}
7676
}
7777
],

0 commit comments

Comments
 (0)