-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add values.schema.json for nginx * add values.schema.json for mongo * add values.schema.json for postgres * add values.schema.json for rabbitmq
- Loading branch information
Showing
8 changed files
with
173 additions
and
4 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,24 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"properties": { | ||
"replicaCount": { | ||
"type": "integer", | ||
"title": "Replicas Count", | ||
"form": true, | ||
"minimum": 1 | ||
}, | ||
"ingress": { | ||
"type": "object", | ||
"title": "Ingress", | ||
"form": true, | ||
"properties": { | ||
"enabled": { | ||
"type": "boolean", | ||
"title": "Enabled", | ||
"form": true | ||
} | ||
} | ||
} | ||
} | ||
} |
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,38 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"properties": { | ||
"persistence": { | ||
"type": "object", | ||
"title": "Data Persistence", | ||
"form": true, | ||
"properties": { | ||
"size": { | ||
"type": "string", | ||
"title": "Persistent Volume Size", | ||
"form": true, | ||
"render": "slider", | ||
"sliderMin": 1, | ||
"sliderUnit": "Gi" | ||
} | ||
} | ||
}, | ||
"rootUsername": { | ||
"type": "string", | ||
"title": "Root Username", | ||
"form": true, | ||
"regex": "^((?!root)\\w)+$" | ||
}, | ||
"rootPassword": { | ||
"type": "string", | ||
"title": "Root Password", | ||
"form": true, | ||
"regex": "(?=.*\\d)(?=.*[a-z])(?=.*[A-Z]).{8,32}" | ||
} | ||
}, | ||
"required": [ | ||
"persistence", | ||
"rootUsername", | ||
"rootPassword" | ||
] | ||
} |
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,43 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"properties": { | ||
"persistence": { | ||
"type": "object", | ||
"title": "Data Persistence", | ||
"form": true, | ||
"properties": { | ||
"enabled": { | ||
"type": "boolean", | ||
"title": "Enabled", | ||
"form": true | ||
}, | ||
"size": { | ||
"type": "string", | ||
"title": "Persistent Volume Size", | ||
"form": true, | ||
"render": "slider", | ||
"sliderMin": 1, | ||
"sliderUnit": "Gi" | ||
} | ||
} | ||
}, | ||
"rootUsername": { | ||
"type": "string", | ||
"title": "Root Username", | ||
"form": true, | ||
"regex": "^(?i)(?!(postgis|postgres|replica)$)[a-z_][a-z0-9_]{1,32}$" | ||
}, | ||
"rootPassword": { | ||
"type": "string", | ||
"title": "Root Password", | ||
"form": true, | ||
"regex": "(?=.*\\d)(?=.*[a-z])(?=.*[A-Z]).{8,32}" | ||
} | ||
}, | ||
"required": [ | ||
"persistence", | ||
"rootUsername", | ||
"rootPassword" | ||
] | ||
} |
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,64 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"properties": { | ||
"persistence": { | ||
"type": "object", | ||
"title": "Data Persistence", | ||
"form": true, | ||
"properties": { | ||
"enabled": { | ||
"type": "boolean", | ||
"title": "Enabled", | ||
"form": true | ||
}, | ||
"size": { | ||
"type": "string", | ||
"title": "Persistent Volume Size", | ||
"form": true, | ||
"render": "slider", | ||
"sliderMin": 1, | ||
"sliderUnit": "Gi" | ||
} | ||
} | ||
}, | ||
"extraPlugins": { | ||
"type": "array", | ||
"title": "Extra Plugins to Enable", | ||
"form": true, | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"extraConfigurations": { | ||
"type": "string", | ||
"title": "Extra Configurations", | ||
"form": true, | ||
"render": "textArea" | ||
}, | ||
"advancedConfigurations": { | ||
"type": "string", | ||
"title": "Advanced Configurations", | ||
"form": true, | ||
"render": "textArea" | ||
}, | ||
"defaultUsername": { | ||
"type": "string", | ||
"title": "Root Username", | ||
"form": true, | ||
"regex": "^\\w{1,32}$" | ||
}, | ||
"defaultPassword": { | ||
"type": "string", | ||
"title": "Root Password", | ||
"description": "Must contains at least one digit, one lowercase letter, and one uppercase letter", | ||
"form": true, | ||
"regex": "^(?=.*\\d)(?=.*[a-z])(?=.*[A-Z]).{8,32}$" | ||
} | ||
}, | ||
"required": [ | ||
"persistence", | ||
"defaultUsername", | ||
"defaultPassword" | ||
] | ||
} |