-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated documentation and schema for the cluster chart
Signed-off-by: Itay Grudev <[email protected]>
- Loading branch information
1 parent
1ca6121
commit 68f44da
Showing
3 changed files
with
356 additions
and
15 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
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,342 @@ | ||
{ | ||
"$schema": "http://json-schema.org/schema#", | ||
"type": "object", | ||
"properties": { | ||
"backups": { | ||
"type": "object", | ||
"properties": { | ||
"azure": { | ||
"type": "object", | ||
"properties": { | ||
"connectionString": { | ||
"type": "string" | ||
}, | ||
"containerName": { | ||
"type": "string" | ||
}, | ||
"inheritFromAzureAD": { | ||
"type": "boolean" | ||
}, | ||
"path": { | ||
"type": "string" | ||
}, | ||
"serviceName": { | ||
"type": "string" | ||
}, | ||
"storageAccount": { | ||
"type": "string" | ||
}, | ||
"storageKey": { | ||
"type": "string" | ||
}, | ||
"storageSasToken": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"destinationPath": { | ||
"type": "string" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"endpointURL": { | ||
"type": "string" | ||
}, | ||
"google": { | ||
"type": "object", | ||
"properties": { | ||
"applicationCredentials": { | ||
"type": "string" | ||
}, | ||
"bucket": { | ||
"type": "string" | ||
}, | ||
"gkeEnvironment": { | ||
"type": "boolean" | ||
}, | ||
"path": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"provider": { | ||
"type": "string" | ||
}, | ||
"retentionPolicy": { | ||
"type": "string" | ||
}, | ||
"s3": { | ||
"type": "object", | ||
"properties": { | ||
"accessKey": { | ||
"type": "string" | ||
}, | ||
"bucket": { | ||
"type": "string" | ||
}, | ||
"path": { | ||
"type": "string" | ||
}, | ||
"region": { | ||
"type": "string" | ||
}, | ||
"secretKey": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"scheduledBackups": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"backupOwnerReference": { | ||
"type": "string" | ||
}, | ||
"name": { | ||
"type": "string" | ||
}, | ||
"schedule": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"cluster": { | ||
"type": "object", | ||
"properties": { | ||
"additionalLabels": { | ||
"type": "object" | ||
}, | ||
"affinity": { | ||
"type": "object", | ||
"properties": { | ||
"topologyKey": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"annotations": { | ||
"type": "object" | ||
}, | ||
"certificates": { | ||
"type": "null" | ||
}, | ||
"enableSuperuserAccess": { | ||
"type": "boolean" | ||
}, | ||
"imageName": { | ||
"type": "string" | ||
}, | ||
"imagePullPolicy": { | ||
"type": "string" | ||
}, | ||
"imagePullSecrets": { | ||
"type": "array" | ||
}, | ||
"initdb": { | ||
"type": "object" | ||
}, | ||
"instances": { | ||
"type": "integer" | ||
}, | ||
"logLevel": { | ||
"type": "string" | ||
}, | ||
"monitoring": { | ||
"type": "object", | ||
"properties": { | ||
"customQueries": { | ||
"type": "array" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"podMonitor": { | ||
"type": "object", | ||
"properties": { | ||
"enabled": { | ||
"type": "boolean" | ||
} | ||
} | ||
}, | ||
"prometheusRule": { | ||
"type": "object", | ||
"properties": { | ||
"enabled": { | ||
"type": "boolean" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"postgresql": { | ||
"type": "object" | ||
}, | ||
"primaryUpdateMethod": { | ||
"type": "string" | ||
}, | ||
"primaryUpdateStrategy": { | ||
"type": "string" | ||
}, | ||
"priorityClassName": { | ||
"type": "string" | ||
}, | ||
"resources": { | ||
"type": "null" | ||
}, | ||
"storage": { | ||
"type": "object", | ||
"properties": { | ||
"size": { | ||
"type": "string" | ||
}, | ||
"storageClass": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"superuserSecret": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"fullnameOverride": { | ||
"type": "string" | ||
}, | ||
"mode": { | ||
"type": "string" | ||
}, | ||
"nameOverride": { | ||
"type": "string" | ||
}, | ||
"pooler": { | ||
"type": "object", | ||
"properties": { | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"instances": { | ||
"type": "integer" | ||
}, | ||
"parameters": { | ||
"type": "object", | ||
"properties": { | ||
"default_pool_size": { | ||
"type": "string" | ||
}, | ||
"max_client_conn": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"poolMode": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"recovery": { | ||
"type": "object", | ||
"properties": { | ||
"azure": { | ||
"type": "object", | ||
"properties": { | ||
"connectionString": { | ||
"type": "string" | ||
}, | ||
"containerName": { | ||
"type": "string" | ||
}, | ||
"inheritFromAzureAD": { | ||
"type": "boolean" | ||
}, | ||
"path": { | ||
"type": "string" | ||
}, | ||
"serviceName": { | ||
"type": "string" | ||
}, | ||
"storageAccount": { | ||
"type": "string" | ||
}, | ||
"storageKey": { | ||
"type": "string" | ||
}, | ||
"storageSasToken": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"backupName": { | ||
"type": "string" | ||
}, | ||
"clusterName": { | ||
"type": "string" | ||
}, | ||
"destinationPath": { | ||
"type": "string" | ||
}, | ||
"endpointURL": { | ||
"type": "string" | ||
}, | ||
"google": { | ||
"type": "object", | ||
"properties": { | ||
"applicationCredentials": { | ||
"type": "string" | ||
}, | ||
"bucket": { | ||
"type": "string" | ||
}, | ||
"gkeEnvironment": { | ||
"type": "boolean" | ||
}, | ||
"path": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"method": { | ||
"type": "string" | ||
}, | ||
"pitrTarget": { | ||
"type": "object", | ||
"properties": { | ||
"time": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"provider": { | ||
"type": "string" | ||
}, | ||
"s3": { | ||
"type": "object", | ||
"properties": { | ||
"accessKey": { | ||
"type": "string" | ||
}, | ||
"bucket": { | ||
"type": "string" | ||
}, | ||
"path": { | ||
"type": "string" | ||
}, | ||
"region": { | ||
"type": "string" | ||
}, | ||
"secretKey": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"type": { | ||
"type": "string" | ||
} | ||
} | ||
} |