-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
50da0e6
commit fb4f45d
Showing
16 changed files
with
1,330 additions
and
379 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
16 changes: 16 additions & 0 deletions
16
docs/examples/redis/monitoring/builtin-prometheus/demo-1.yaml
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,16 @@ | ||
apiVersion: kubedb.com/v1alpha1 | ||
kind: Redis | ||
metadata: | ||
name: redis-mon-prometheus | ||
namespace: demo | ||
spec: | ||
version: 4 | ||
storage: | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 50Mi | ||
monitor: | ||
agent: prometheus.io/builtin |
22 changes: 22 additions & 0 deletions
22
docs/examples/redis/monitoring/coreos-operator/demo-1.yaml
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,22 @@ | ||
apiVersion: kubedb.com/v1alpha1 | ||
kind: Redis | ||
metadata: | ||
name: redis-mon-coreos | ||
namespace: demo | ||
spec: | ||
version: 4 | ||
storage: | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 50Mi | ||
monitor: | ||
agent: prometheus.io/coreos-operator | ||
prometheus: | ||
namespace: demo | ||
labels: | ||
app: kubedb | ||
interval: 10s | ||
|
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,8 @@ | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: myregistrykey | ||
namespace: demo | ||
data: | ||
.dockerconfigjson: <base-64-encoded-json-here> | ||
type: kubernetes.io/dockerconfigjson |
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,17 @@ | ||
apiVersion: kubedb.com/v1alpha1 | ||
kind: Redis | ||
metadata: | ||
name: redis-pvt-reg | ||
namespace: demo | ||
spec: | ||
version: 4 | ||
doNotPause: true | ||
storage: | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 50Mi | ||
imagePullSecrets: | ||
- name: myregistrykey |
2 changes: 1 addition & 1 deletion
2
docs/examples/redis/demo-1.yaml → docs/examples/redis/quickstart/demo-1.yaml
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,43 @@ | ||
|
||
|
||
> New to KubeDB? Please start [here](/docs/guides/README.md). | ||
## Redis versions supported by KubeDB | ||
|
||
| KubeDB Version | Redis:4 | | ||
|:--:|:--:| | ||
| 0.1.0 - 0.7.0 | ✗ | | ||
| 0.8.0-beta.0 | ✓ | | ||
| 0.8.0-beta.1 | ✓ | | ||
|
||
<br/> | ||
|
||
## KubeDB Features and their availability for Redis | ||
|
||
|Features |Availability| | ||
|--|:--:| | ||
|Clustering | ✗ | | ||
|Instant Backup | ✗ | | ||
|Scheduled Backup | ✗ | | ||
|Initialize using Snapshot | ✗ | | ||
|Initialize using Script | ✗ | | ||
|Persistent Volume | ✓ | | ||
|out-of-the-box builtin-Prometheus Monitoring | ✓ | | ||
|out-of-the-box CoreOS-Prometheus-Operator Monitoring | ✓ | | ||
|
||
<br/> | ||
|
||
## Life Cycle of Redis in KubeDB | ||
<p align="center"> | ||
<img alt="lifecycle" src="/docs/images/redis/redis-lifecycle.png" width="600" height="373"> | ||
</p> | ||
|
||
|
||
## User Guide | ||
- [Quickstart Redis](/docs/guides/redis/quickstart/quickstart.md) with KubeDB Operator. | ||
- Monitor your Redis database with KubeDB using [out-of-the-box CoreOS Prometheus Operator](/docs/guides/redis/monitoring/using-coreos-prometheus-operator.md). | ||
- Monitor your Redis database with KubeDB using [out-of-the-box builtin-Prometheus](/docs/guides/redis/monitoring/using-builtin-prometheus.md). | ||
- Use [Private Docker Registry](/docs/guides/redis/private-registry/using-private-registry.md) to deploy Redis with KubeDB. | ||
- Detail concepts of [Redis object](/docs/concepts/databases/redis.md). | ||
- Wondering what features are coming next? Please visit [here](/docs/roadmap.md). | ||
- Want to hack on KubeDB? Check our [contribution guidelines](/docs/CONTRIBUTING.md). |
Oops, something went wrong.