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.767.tar.gz
(258.8 kB
view details)
Built Distribution
cdk8s_redis-0.1.767-py3-none-any.whl
(257.1 kB
view details)
File details
Details for the file cdk8s-redis-0.1.767.tar.gz
.
File metadata
- Download URL: cdk8s-redis-0.1.767.tar.gz
- Upload date:
- Size: 258.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d2774a94c7efd37df6c62e5b7884857461f99e05bad0938ec6fdd5b4c65329d |
|
MD5 | 98cd33db43217b8fd7d2b5d82f984bfb |
|
BLAKE2b-256 | cedab91c18a7f81f08fc2bcc91bcdcd48882b4937a708fced797ab0434b11a18 |
File details
Details for the file cdk8s_redis-0.1.767-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_redis-0.1.767-py3-none-any.whl
- Upload date:
- Size: 257.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4026a40af6315104f97835029eb97a711c51354cd7a07931b2d81aab981c92a |
|
MD5 | db71a1258bba6902b0e24afd6ab9bc07 |
|
BLAKE2b-256 | 09952096ea40f2b879ea5abca240de9b46cd4affc525e732d2ac14e1c8b6b2c8 |