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.259.tar.gz
(258.9 kB
view details)
Built Distribution
cdk8s_redis-0.1.259-py3-none-any.whl
(257.3 kB
view details)
File details
Details for the file cdk8s-redis-0.1.259.tar.gz
.
File metadata
- Download URL: cdk8s-redis-0.1.259.tar.gz
- Upload date:
- Size: 258.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab27588a410ec5da3192962ab9ee81ea26c00ab543830eafbec36a7ef2c662e8 |
|
MD5 | 32b07d37540ffb802713f25a530872ad |
|
BLAKE2b-256 | ebe77720a17f8fe65d23bc0b6d78ecf4dcf1a66b19f741ce218ae17959888433 |
File details
Details for the file cdk8s_redis-0.1.259-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_redis-0.1.259-py3-none-any.whl
- Upload date:
- Size: 257.3 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 | ce3a9bd73d54a6b45752dbc1f92e9c377ab1cc7d9338d226db7375177c90aadf |
|
MD5 | 8b8e32e2fb6dff43c92eea3fb8843b6c |
|
BLAKE2b-256 | b7197a33ba2552ce9c4fd452d984abc9fe2b0c768f7731c553896820501bcf5a |