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.264.tar.gz
(266.6 kB
view details)
Built Distribution
cdk8s_redis-0.1.264-py3-none-any.whl
(265.1 kB
view details)
File details
Details for the file cdk8s-redis-0.1.264.tar.gz
.
File metadata
- Download URL: cdk8s-redis-0.1.264.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 | ca47c7fb73d7c25e6feca5eba88a97b38390c8aade21da06f786451ee86487df |
|
MD5 | add429b54a607b44bc5ce5036cb043fe |
|
BLAKE2b-256 | 0ea1186ee16ab7182e1a72a77fe0f32d94706608ae66f4d287bc7e87f1ec8d4a |
File details
Details for the file cdk8s_redis-0.1.264-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_redis-0.1.264-py3-none-any.whl
- Upload date:
- Size: 265.1 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 | 61705c306d485bfaa242a7648ca153da7fa82e9a6ac0f30e0eacb181bc2c9f0f |
|
MD5 | 14f721207fa052c4e7ae4b64530b3134 |
|
BLAKE2b-256 | 93de804b9a4649b655b6e6afdb7b10ba3660d32d9cd750d4665722bbeb372f9d |