Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Singlestore casing #815

Merged
merged 1 commit into from
Jan 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion catalog/kubestash/fmt/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ var appToKind = map[string]string{
"proxysql": "ProxySQL",
"rabbitmq": "RabbitMQ",
"redis": "Redis",
"singlestore": "SingleStore",
"singlestore": "Singlestore",
"solr": "Solr",
"zookeeper": "ZooKeeper",
}
Expand Down
2 changes: 1 addition & 1 deletion charts/kubedb-kubestash-catalog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ The following table lists the configurable parameters of the `kubedb-kubestash-c
| featureGates.ProxySQL | | <code>true</code> |
| featureGates.RabbitMQ | | <code>false</code> |
| featureGates.Redis | | <code>true</code> |
| featureGates.SingleStore | | <code>false</code> |
| featureGates.Singlestore | | <code>false</code> |
| featureGates.Solr | | <code>false</code> |
| featureGates.ZooKeeper | | <code>false</code> |
| elasticsearch.backup.args | Arguments to pass to `multielasticdump` command during backup process | <code>""</code> |
Expand Down
2 changes: 1 addition & 1 deletion charts/kubedb-kubestash-catalog/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ featureGates:
ProxySQL: true
RabbitMQ: false
Redis: true
SingleStore: false
Singlestore: false
Solr: false
ZooKeeper: false

Expand Down
2 changes: 1 addition & 1 deletion charts/kubedb-one/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ The following table lists the configurable parameters of the `kubedb-one` chart
| global.featureGates.ProxySQL | | <code>true</code> |
| global.featureGates.RabbitMQ | | <code>false</code> |
| global.featureGates.Redis | | <code>true</code> |
| global.featureGates.SingleStore | | <code>false</code> |
| global.featureGates.Singlestore | | <code>false</code> |
| global.featureGates.Solr | | <code>false</code> |
| global.featureGates.ZooKeeper | | <code>false</code> |
| global.monitoring.agent | Name of monitoring agent (one of "prometheus.io", "prometheus.io/operator", "prometheus.io/builtin") | <code>""</code> |
Expand Down
2 changes: 1 addition & 1 deletion charts/kubedb-one/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ global:
ProxySQL: true
RabbitMQ: false
Redis: true
SingleStore: false
Singlestore: false
Solr: false
ZooKeeper: false

Expand Down
2 changes: 1 addition & 1 deletion charts/kubedb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ The following table lists the configurable parameters of the `kubedb` chart and
| global.featureGates.ProxySQL | | <code>true</code> |
| global.featureGates.RabbitMQ | | <code>false</code> |
| global.featureGates.Redis | | <code>true</code> |
| global.featureGates.SingleStore | | <code>false</code> |
| global.featureGates.Singlestore | | <code>false</code> |
| global.featureGates.Solr | | <code>true</code> |
| global.featureGates.ZooKeeper | | <code>false</code> |
| global.monitoring.agent | Name of monitoring agent (one of "prometheus.io", "prometheus.io/operator", "prometheus.io/builtin") | <code>""</code> |
Expand Down
2 changes: 1 addition & 1 deletion charts/kubedb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ global:
ProxySQL: true
RabbitMQ: false
Redis: true
SingleStore: false
Singlestore: false
Solr: true
ZooKeeper: false

Expand Down
Loading