-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add values and schema file for kblib
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"$schema": "http://json-schema.org/schema#", | ||
"type": "object", | ||
"properties": { | ||
"disableExporter": { | ||
"title": "Monitor Enabled", | ||
"description": "Enable or disable monitor.", | ||
"type": "boolean", | ||
"default": true | ||
}, | ||
"terminationPolicy": { | ||
"title": "Termination Policy", | ||
"description": "The termination policy of cluster.", | ||
"type": "string", | ||
"default": "Delete", | ||
"enum": [ | ||
"DoNotTerminate", | ||
"Halt", | ||
"Delete", | ||
"WipeOut" | ||
] | ||
}, | ||
"rbacEnabled": { | ||
"title": "RBAC Enabled", | ||
"description": "Specify whether rbac resources will be created by client, otherwise KubeBlocks server will try to create rbac resources.", | ||
"type": "boolean", | ||
"default": false | ||
} | ||
} | ||
} |
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,12 @@ | ||
# Common values for cluster charts | ||
|
||
## @param monitoring interval, 0 is no monitoring | ||
## | ||
disableExporter: true | ||
|
||
## @param terminationPolicy | ||
terminationPolicy: Delete | ||
|
||
## @param rbacEnabled if true, rbac resources will be created | ||
## | ||
rbacEnabled: false |