diff --git a/charts/kubedb-ui-server/templates/cluster-role.yaml b/charts/kubedb-ui-server/templates/cluster-role.yaml index 96a3ae69f..3f78dc5a0 100644 --- a/charts/kubedb-ui-server/templates/cluster-role.yaml +++ b/charts/kubedb-ui-server/templates/cluster-role.yaml @@ -13,6 +13,7 @@ rules: - apiGroups: - kubedb.com - catalog.kubedb.com + - catalog.appscode.com resources: - "*" verbs: ["get", "list", "watch"] diff --git a/charts/kubedb/README.md b/charts/kubedb/README.md index 617879282..7a0044040 100644 --- a/charts/kubedb/README.md +++ b/charts/kubedb/README.md @@ -45,7 +45,7 @@ The command removes all the Kubernetes components associated with the chart and The following table lists the configurable parameters of the `kubedb` chart and their default values. -| Parameter | Description | Default | +| Parameter | Description | Default | |-----------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| | global.license | License for the product. Get a license by following the steps from [here](https://kubedb.com/docs/latest/setup/install/enterprise#get-a-trial-license).
Example:
`helm install appscode/kubedb \`
`--set-file global.license=/path/to/license/file`
`or`
`helm install appscode/kubedb \`
`--set global.license=` | "" | | global.licenseSecretName | Name of Secret with the license as key.txt key | "" | @@ -53,6 +53,7 @@ The following table lists the configurable parameters of the `kubedb` chart and | global.registryFQDN | Docker registry fqdn used to pull KubeDB related images. Set this to use docker registry hosted at ${registryFQDN}/${registry}/${image} | "" | | global.insecureRegistries | Specify an array of insecure registries.
Example:
`helm template charts/kubedb-ops-manager \`
`--set global.insecureRegistries[0]=hub.company.com \`
`--set global.insecureRegistries[1]=reg.example.com` | [] | | global.imagePullSecrets | Specify an array of imagePullSecrets. Secrets must be manually created in the namespace.
Example:
`helm template charts/kubedb \`
`--set global.imagePullSecrets[0].name=sec0 \`
`--set global.imagePullSecrets[1].name=sec1` | [] | +| global.featureGates.Cassandra | | false | | global.featureGates.ClickHouse | | false | | global.featureGates.Druid | | false | | global.featureGates.Elasticsearch | | true | diff --git a/charts/kubedb/values.yaml b/charts/kubedb/values.yaml index 61a81b1d9..52dca220a 100644 --- a/charts/kubedb/values.yaml +++ b/charts/kubedb/values.yaml @@ -41,6 +41,7 @@ global: imagePullSecrets: [] featureGates: + Cassandra: false ClickHouse: false Druid: false Elasticsearch: true