-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: ashraful <[email protected]>
- Loading branch information
1 parent
9722677
commit 20ec8a1
Showing
6 changed files
with
106 additions
and
0 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,40 @@ | ||
--- | ||
title: SingleStore | ||
menu: | ||
docs_{{ .version }}: | ||
identifier: guides-singlestore-readme | ||
name: SingleStore | ||
parent: guides-singlestore | ||
weight: 10 | ||
menu_name: docs_{{ .version }} | ||
section_menu_id: guides | ||
url: /docs/{{ .version }}/guides/singlestore/ | ||
aliases: | ||
- /docs/{{ .version }}/guides/singlestore/README/ | ||
--- | ||
> New to KubeDB? Please start [here](/docs/README.md). | ||
## Supported SingleStore Features | ||
|
||
| Features | Availability | | ||
|---------------------------------------------------------|:------------:| | ||
| Clustering | ✓ | | ||
| Authentication & Authorization | ✓ | | ||
| Initialize using Script (\*.sql, \*sql.gz and/or \*.sh) | ✓ | | ||
| Custom Configuration | ✓ | | ||
| Externally manageable Auth Secret | ✓ | | ||
| Reconfigurable Health Checker | ✓ | | ||
| Persistent volume | ✓ | | ||
|
||
## Supported SingleStore Versions | ||
|
||
KubeDB supports the following SingleSore Versions. | ||
- `8.1.32` | ||
|
||
## Life Cycle of a SingleStore Object | ||
|
||
<p align="center"> | ||
<img alt="lifecycle" src="/docs/guides/singlestore/images/singlestore-lifecycle.png" > | ||
</p> | ||
|
||
## User Guide |
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,10 @@ | ||
--- | ||
title: SingleStore | ||
menu: | ||
docs_{{ .version }}: | ||
identifier: guides-singlestore | ||
name: SingleStore | ||
parent: guides | ||
weight: 40 | ||
menu_name: docs_{{ .version }} | ||
--- |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,54 @@ | ||
--- | ||
title: SingleStore Quickstart | ||
menu: | ||
docs_{{ .version }}: | ||
identifier: guides-singlestore-quickstart | ||
name: Quickstart | ||
parent: guides-singletore | ||
weight: 15 | ||
menu_name: docs_{{ .version }} | ||
section_menu_id: guides | ||
--- | ||
|
||
> New to KubeDB? Please start [here](/docs/README.md). | ||
# SingleStore QuickStart | ||
|
||
This tutorial will show you how to use KubeDB to run a SingleStore database. | ||
|
||
<p align="center"> | ||
<img alt="lifecycle" src="/docs/guides/singlestore/quickstart/images/singlestore-lifecycle.png"> | ||
</p> | ||
|
||
> Note: The yaml files used in this tutorial are stored in [docs/guides/singlestore/quickstart/yamls](https://github.com/kubedb/docs/tree/{{< param "info.version" >}}/docs/guides/singlestore/quickstart/yamls) folder in GitHub repository [kubedb/docs](https://github.com/kubedb/docs). | ||
## Before You Begin | ||
|
||
- At first, you need to have a Kubernetes cluster, and the kubectl command-line tool must be configured to communicate with your cluster. If you do not already have a cluster, you can create one by using [kind](https://kind.sigs.k8s.io/docs/user/quick-start/). | ||
|
||
- Now, install KubeDB cli on your workstation and KubeDB operator in your cluster following the steps [here](/docs/setup/README.md). | ||
|
||
- [StorageClass](https://kubernetes.io/docs/concepts/storage/storage-classes/) is required to run KubeDB. Check the available StorageClass in cluster. | ||
|
||
```bash | ||
$ kubectl get storageclasses | ||
NAME PROVISIONER RECLAIMPOLICY VOLUMEBINDINGMODE ALLOWVOLUMEEXPANSION AGE | ||
standard (default) rancher.io/local-path Delete WaitForFirstConsumer false 6h22m | ||
``` | ||
|
||
- To keep things isolated, this tutorial uses a separate namespace called `demo` throughout this tutorial. | ||
|
||
```bash | ||
$ kubectl create ns demo | ||
namespace/demo created | ||
``` | ||
|
||
## Find Available SingleStoreVersion | ||
|
||
When you have installed KubeDB, it has created `SinglestoreVersion` crd for all supported SingleStore versions. Check it by using the following command, | ||
|
||
```bash | ||
$ kubectl get singlestoreversions | ||
NAME VERSION DB_IMAGE DEPRECATED AGE | ||
8.1.32 8.1.32 singlestore/node:alma-8.1.32-e3d3cde6da 27h | ||
``` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.