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.622.tar.gz
(258.6 kB
view details)
Built Distribution
cdk8s_redis-0.1.622-py3-none-any.whl
(256.9 kB
view details)
File details
Details for the file cdk8s-redis-0.1.622.tar.gz
.
File metadata
- Download URL: cdk8s-redis-0.1.622.tar.gz
- Upload date:
- Size: 258.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d810357388c7ced9969c5475b1b4f5f89da73fe0d6160d84ee5914ac229c803d |
|
MD5 | 3576ee5b6fc5ad79af1d85f497187cb2 |
|
BLAKE2b-256 | dd80b16910f034b6ac3b631d310bcae739ff5d8334e94f9f177555a1b04a9ae6 |
File details
Details for the file cdk8s_redis-0.1.622-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_redis-0.1.622-py3-none-any.whl
- Upload date:
- Size: 256.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d8bc32694335a86aad60030099dc0f88b44b3e5c9a71365426a73582283af002 |
|
MD5 | 813d9cbc244a0b55962ba3efed970e3e |
|
BLAKE2b-256 | b9967105f97292bddccfa682f182b31d88c485efdb168bc8700f09df27aeef4e |