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.741.tar.gz
(258.6 kB
view details)
Built Distribution
cdk8s_redis-0.1.741-py3-none-any.whl
(257.0 kB
view details)
File details
Details for the file cdk8s-redis-0.1.741.tar.gz
.
File metadata
- Download URL: cdk8s-redis-0.1.741.tar.gz
- Upload date:
- Size: 258.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cbed0eedb07a2dde2fa879e960d17ae5e3dd532df746b0cb5cda181408f1ddce |
|
MD5 | 35ff3dad73ce70fee9a8066200b6e0d8 |
|
BLAKE2b-256 | 72ccdcada65133bf213340f9e9eb5d37854fa3a249b1eb5e9e516b4657a0ab45 |
File details
Details for the file cdk8s_redis-0.1.741-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_redis-0.1.741-py3-none-any.whl
- Upload date:
- Size: 257.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd2000e436df60c6d9afeb857d180347715080455ffd2026fb2e77d800349696 |
|
MD5 | 321a4fb28f1e595595997055075815ef |
|
BLAKE2b-256 | 55e82767cdeee5de11f1343cfb933402e5bd58f2286f6eccbb6c68cdc434c085 |