We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e78b232 commit 3279748Copy full SHA for 3279748
1 file changed
values.schema.json
@@ -6,6 +6,9 @@
6
"type": "object",
7
"additionalProperties": true,
8
"properties": {
9
+ "secretLoader": {
10
+ "$ref": "#/definitions/SecretLoader"
11
+ },
12
"secretStore": {
13
"$ref": "#/definitions/SecretStore"
14
},
@@ -24,6 +27,17 @@
24
27
],
25
28
"title": "ValidatedPatterns"
26
29
30
+ "SecretLoader": {
31
+ "type": "object",
32
+ "additionalProperties": false,
33
+ "properties": {
34
+ "disabled": {
35
+ "type": "boolean",
36
+ "description": "Whether to disable secret loaders",
37
+ "default": false
38
+ }
39
40
41
"SecretStore": {
42
43
"additionalProperties": false,
0 commit comments