Basic implementation of a Redis construct for cdk8s.
Project description
cdk8s-redis
Redis constructs for cdk8s
Basic implementation of a Redis construct for cdk8s. Contributions are welcome!
Usage
The following will define a Redis cluster with a primary and 2 replicas:
import { Redis } from 'cdk8s-redis';
// inside your chart:
const redis = new Redis(this, 'my-redis');
DNS names can be obtained from redis.primaryHost
and redis.replicaHost
.
You can specify how many replicas to define:
new Redis(this, 'my-redis', {
replicas: 4
});
Or, you can specify no replicas:
new Redis(this, 'my-redis', {
replicas: 0
});
License
Distributed under the Apache 2.0 license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cdk8s-redis-0.1.514.tar.gz
(259.0 kB
view details)
Built Distribution
cdk8s_redis-0.1.514-py3-none-any.whl
(257.3 kB
view details)
File details
Details for the file cdk8s-redis-0.1.514.tar.gz
.
File metadata
- Download URL: cdk8s-redis-0.1.514.tar.gz
- Upload date:
- Size: 259.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 71069f0b4250dcd308995c11d57f12d02196269138697bef595956d3354594b1 |
|
MD5 | c26fa6e677ebe48d15d8600a3bb3e2d1 |
|
BLAKE2b-256 | 4ef605177f7baa5f63ef007faab7fe2ef61a8aab86fe2e87377e03007ab91c65 |
File details
Details for the file cdk8s_redis-0.1.514-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_redis-0.1.514-py3-none-any.whl
- Upload date:
- Size: 257.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef5f6fe3451f442c48d216987826c21721ad5f03d494e92d00f1ffa5ded93229 |
|
MD5 | 0a7be1f07f83ed07a4463bcff01e0bbc |
|
BLAKE2b-256 | e603431de4484043d99e0460473bb31da35e2c5eb7be5f5820ec3cc3b5471565 |