generated from quarkiverse/quarkiverse-template
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
imrove: add json schema and readme for helm chart
- Loading branch information
Showing
3 changed files
with
39 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## Configuration | ||
|
||
The following values are configurable: | ||
|
||
- `watchNamespaces` - namespaces to be watched, it's either a list of namespaces one of special values: | ||
- `JOSDK_ALL_NAMESPACES` to watch all namespaces, or | ||
- `JOSDK_WATCH_CURRENT` to watch the current namespace | ||
- `version` - the current version of the application. | ||
|
13 changes: 13 additions & 0 deletions
13
core/deployment/src/main/resources/helm/static/values.schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft-07/schema#", | ||
"title": "Values", | ||
"type": "object", | ||
"properties": { | ||
"watchNamespaces": { | ||
"type": "String" | ||
}, | ||
"version": { | ||
"type": "String" | ||
} | ||
} | ||
} |