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.279.tar.gz
(266.6 kB
view details)
Built Distribution
cdk8s_redis-0.1.279-py3-none-any.whl
(265.1 kB
view details)
File details
Details for the file cdk8s-redis-0.1.279.tar.gz
.
File metadata
- Download URL: cdk8s-redis-0.1.279.tar.gz
- Upload date:
- Size: 266.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf617cba055522f4c5cf1256ae5f3cf1f8eb964fabbdccaf0d4fc1fb333a426a |
|
MD5 | f81875a7c98bca221aa42dade7b26d54 |
|
BLAKE2b-256 | 6d7963d32c843f878d63e5bfe48268a59a8d273e3d1e1dfbe644fdd9acfd1dc8 |
File details
Details for the file cdk8s_redis-0.1.279-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_redis-0.1.279-py3-none-any.whl
- Upload date:
- Size: 265.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85e9d0dd0d3400aceceeef5b32d6db2f296862d99490eb3b070c77f3be30f089 |
|
MD5 | 19cbf09a9a4c117a11e6d1e39e6ae2c4 |
|
BLAKE2b-256 | 9068297e16e703ed81fda37383b81bb75cb7e5c3253e7bfb290a2ce00362f35f |