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.270.tar.gz
(266.6 kB
view details)
Built Distribution
cdk8s_redis-0.1.270-py3-none-any.whl
(265.2 kB
view details)
File details
Details for the file cdk8s-redis-0.1.270.tar.gz
.
File metadata
- Download URL: cdk8s-redis-0.1.270.tar.gz
- Upload date:
- Size: 266.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 716f5f0c00f76c5bc6956b9b3c334a1644b6cbe2dde059b8fd3680f89c835e00 |
|
MD5 | d8afa75bb1642c62673e8060cdc9e165 |
|
BLAKE2b-256 | d4ef88d17dc48606aa3703b361c9487446bd855665b600c2b6897ebe40d74937 |
File details
Details for the file cdk8s_redis-0.1.270-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_redis-0.1.270-py3-none-any.whl
- Upload date:
- Size: 265.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18d0b0cf0e5583854ef0c4143b1f9221715037ea5c79810da53e6cef3b0584c6 |
|
MD5 | 44f1b0ac6af79c333835b4afeae741cd |
|
BLAKE2b-256 | 393f95da61b8e95ce053c64bce150d23fa26ba509fb787b93ac11be4e52c4f60 |