Skip to content

Commit 42a4f69

Browse files
committed
Fix schema references
1 parent 2834566 commit 42a4f69

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

charts/nhi-explorer/values-base-schema.schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"version": {"type": "string"},
1010
"schedule": {"type": "string"},
1111
"config": {
12-
"$ref": "nhi-explorer-config.schema.json"
12+
"$ref": "inventory-config.schema.json"
1313
}
1414
},
1515
"required": ["config"]

charts/nhi-explorer/values.schema.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"minProperties": 1,
1515
"properties": {
1616
"config": {
17-
"$ref": "#/definitions/nhi-explorer-config.schema.json"
17+
"$ref": "#/definitions/inventory-config.schema.json"
1818
},
1919
"schedule": {
2020
"type": "string",
@@ -40,7 +40,7 @@
4040
]
4141
},
4242
"definitions": {
43-
"nhi-explorer-config.schema.json": {
43+
"inventory-config.schema.json": {
4444
"$schema": "http://json-schema.org/draft-07/schema#",
4545
"title": "Config",
4646
"type": "object",
@@ -54,13 +54,13 @@
5454
"minProperties": 0,
5555
"properties": {},
5656
"additionalProperties": {
57-
"$ref": "#/definitions/nhi-explorer-config.schema.json/definitions/FetchSource"
57+
"$ref": "#/definitions/inventory-config.schema.json/definitions/FetchSource"
5858
}
5959
},
6060
"upload": {
6161
"anyOf": [
6262
{
63-
"$ref": "#/definitions/nhi-explorer-config.schema.json/definitions/UploadConfig"
63+
"$ref": "#/definitions/inventory-config.schema.json/definitions/UploadConfig"
6464
},
6565
{
6666
"enum": [
@@ -294,7 +294,7 @@
294294
"description": "Auth mode: using Conjur Cloud workloads or CyberArk identity service",
295295
"allOf": [
296296
{
297-
"$ref": "#/definitions/nhi-explorer-config.schema.json/definitions/AuthMode"
297+
"$ref": "#/definitions/inventory-config.schema.json/definitions/AuthMode"
298298
}
299299
]
300300
},

schemas/inventory-agent-config.schema.json schemas/inventory-config.schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "inventory-agent-config.schema.json",
3+
"$id": "inventory-config.schema.json",
44
"title": "Config",
55
"type": "object",
66
"required": [

0 commit comments

Comments
 (0)