-
Notifications
You must be signed in to change notification settings - Fork 58
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 dff7445
Showing
17 changed files
with
1,359 additions
and
393 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
18 changes: 18 additions & 0 deletions
18
docs/examples/memcached/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,18 @@ | ||
apiVersion: kubedb.com/v1alpha1 | ||
kind: Memcached | ||
metadata: | ||
name: memcd-mon-prometheus | ||
namespace: demo | ||
spec: | ||
replicas: 3 | ||
version: 1.5.4 | ||
doNotPause: true | ||
resources: | ||
requests: | ||
memory: 64Mi | ||
cpu: 250m | ||
limits: | ||
memory: 128Mi | ||
cpu: 500m | ||
monitor: | ||
agent: prometheus.io/builtin |
24 changes: 24 additions & 0 deletions
24
docs/examples/memcached/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,24 @@ | ||
apiVersion: kubedb.com/v1alpha1 | ||
kind: Memcached | ||
metadata: | ||
name: memcd-mon-coreos | ||
namespace: demo | ||
spec: | ||
replicas: 3 | ||
version: 1.5.4 | ||
doNotPause: true | ||
resources: | ||
requests: | ||
memory: 64Mi | ||
cpu: 250m | ||
limits: | ||
memory: 128Mi | ||
cpu: 500m | ||
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,18 @@ | ||
apiVersion: kubedb.com/v1alpha1 | ||
kind: Memcached | ||
metadata: | ||
name: memcd-pvt-reg | ||
namespace: demo | ||
spec: | ||
replicas: 3 | ||
version: 1.5.4 | ||
doNotPause: true | ||
resources: | ||
requests: | ||
memory: 64Mi | ||
cpu: 250m | ||
limits: | ||
memory: 128Mi | ||
cpu: 500m | ||
imagePullSecrets: | ||
- name: myregistrykey |
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: Memcached | ||
metadata: | ||
name: memcd-quickstart | ||
namespace: demo | ||
spec: | ||
replicas: 3 | ||
version: 1.5.4 | ||
doNotPause: true | ||
resources: | ||
requests: | ||
memory: 64Mi | ||
cpu: 250m | ||
limits: | ||
memory: 128Mi | ||
cpu: 500m |
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). | ||
## Memcached versions supported by KubeDB | ||
|
||
| KubeDB Version | Memcached:1.5.4 | | ||
|:--:|:--:| | ||
| 0.1.0 - 0.7.0 | ✗ | | ||
| 0.8.0-beta.0 | ✓ | | ||
| 0.8.0-beta.1 | ✓ | | ||
|
||
<br/> | ||
|
||
## KubeDB Features and their availability for Memcached | ||
|
||
|Features |Availability| | ||
|--|:--:| | ||
|Clustering | ✗ | | ||
|Persistent Volume | ✗ | | ||
|Instant Backup | ✗ | | ||
|Scheduled Backup | ✗ | | ||
|Initialize using Snapshot | ✗ | | ||
|Initialize using Script | ✗ | | ||
|out-of-the-box builtin-Prometheus Monitoring | ✓ | | ||
|out-of-the-box CoreOS-Prometheus-Operator Monitoring | ✓ | | ||
|
||
<br/> | ||
|
||
## Life Cycle of Memcached in KubeDB | ||
<p align="center"> | ||
<img alt="lifecycle" src="/docs/images/memcached/memcached-lifecycle.png" width="600" height="373"> | ||
</p> | ||
|
||
|
||
## User Guide | ||
- [Quickstart Memcached](/docs/guides/memcached/quickstart/quickstart.md) with KubeDB Operator. | ||
- Monitor your Memcached database with KubeDB using [out-of-the-box CoreOS Prometheus Operator](/docs/guides/memcached/monitoring/using-coreos-prometheus-operator.md). | ||
- Monitor your Memcached database with KubeDB using [out-of-the-box builtin-Prometheus](/docs/guides/memcached/monitoring/using-builtin-prometheus.md). | ||
- Use [Private Docker Registry](/docs/guides/memcached/private-registry/using-private-registry.md) to deploy Memcached with KubeDB. | ||
- Detail concepts of [Memcached object](/docs/concepts/databases/memcached.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.