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.495.tar.gz
(259.0 kB
view details)
Built Distribution
cdk8s_redis-0.1.495-py3-none-any.whl
(257.4 kB
view details)
File details
Details for the file cdk8s-redis-0.1.495.tar.gz
.
File metadata
- Download URL: cdk8s-redis-0.1.495.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 | 7b3d38075f3fea455553ebd66e853f7e2895d76bafaa6e03c86c8668b063d3dc |
|
MD5 | 9ed60bbdb3ae0b31d5746571424a53c3 |
|
BLAKE2b-256 | 4dbd5faed15628af7091e75b453c246d957694817274d115246c8235a01f772f |
File details
Details for the file cdk8s_redis-0.1.495-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_redis-0.1.495-py3-none-any.whl
- Upload date:
- Size: 257.4 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 | 7c1c54b127cfcb20bc55957ad8981c8003084f1583cd6b6308d2cfa1a935d3fb |
|
MD5 | 47fa0de5f27741ca0920747cd5a3a887 |
|
BLAKE2b-256 | 31329b1ea17667eeb398f090c37d02fad92dc6d96777583ee7edebf451b2b04b |