Skip to content

Commit

Permalink
helm(json-schema): simplified schema validation and documentation gen…
Browse files Browse the repository at this point in the history
…eration

Signed-off-by: ivan katliarchuk <[email protected]>
  • Loading branch information
ivankatliarchuk committed Feb 9, 2025
1 parent 3aa5d0d commit 9b56fa0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion charts/external-dns/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@
"labelFilter": {
"pattern": "^[a-zA-Z0-9._-]+=[a-zA-Z0-9._-]+$",
"type": [
"string"
"string",
"null"
]
},
"livenessProbe": {
Expand Down
2 changes: 1 addition & 1 deletion charts/external-dns/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ domainFilters: []
excludeDomains: []

# -- Filter resources queried for endpoints by label selector
labelFilter: # @schema pattern:^[a-zA-Z0-9._-]+=[a-zA-Z0-9._-]+$; type: string;
labelFilter: # @schema pattern:^[a-zA-Z0-9._-]+=[a-zA-Z0-9._-]+$; type: [string,null];

# -- Record types to manage (default: A, AAAA, CNAME)
managedRecordTypes: [] # @schema type: [array, null]; item: string; uniqueItems: true;
Expand Down

0 comments on commit 9b56fa0

Please sign in to comment.