mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-06 09:16:40 +00:00
1. Add a `commonName` to every certificate. 2. Move 127.0.0.1 from DNS names to IP Addresses in the certificate spec. 3. Add **client** auth usage to the etcd-**server** certificate (yes, that's necessary), because etcd queries itself using its [server cert as a client cert](https://github.com/etcd-io/etcd/issues/9785#issuecomment-432438748). 4. Default all CA certificates' durations to 10 years. 5. Set subject org to release namespace and OU to name so that subjects are unique
22 lines
522 B
JSON
22 lines
522 B
JSON
{
|
|
"title": "Chart Values",
|
|
"type": "object",
|
|
"properties": {
|
|
"size": {
|
|
"type": "string",
|
|
"description": "Persistent Volume size",
|
|
"default": "4Gi"
|
|
},
|
|
"storageClass": {
|
|
"type": "string",
|
|
"description": "StorageClass used to store the data",
|
|
"default": ""
|
|
},
|
|
"replicas": {
|
|
"type": "number",
|
|
"description": "Number of etcd replicas",
|
|
"default": 3
|
|
}
|
|
}
|
|
}
|