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.405.tar.gz
(258.8 kB
view details)
Built Distribution
cdk8s_redis-0.1.405-py3-none-any.whl
(257.1 kB
view details)
File details
Details for the file cdk8s-redis-0.1.405.tar.gz
.
File metadata
- Download URL: cdk8s-redis-0.1.405.tar.gz
- Upload date:
- Size: 258.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 307d609690beb810dcd32e142fc5046bacb4db1b8a7df820119f1dee9865dfcc |
|
MD5 | cb4e99b95ef2adba793c486bc3e89c32 |
|
BLAKE2b-256 | f251483be3f657de64f5973d79bf3613cff91ce1d3cb1d6de330a3649bad6542 |
File details
Details for the file cdk8s_redis-0.1.405-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_redis-0.1.405-py3-none-any.whl
- Upload date:
- Size: 257.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1bbc7528a9160c5bc258a378d2031e546c2068c000863ecd5873534e2edce8c9 |
|
MD5 | c33961b165e90298899e5f287ec7a248 |
|
BLAKE2b-256 | ae188ff4ad5f6232ee51a3f861a363322b402367070af24f40f41375fd1ec2c0 |