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.317.tar.gz
(258.6 kB
view details)
Built Distribution
cdk8s_redis-0.1.317-py3-none-any.whl
(257.0 kB
view details)
File details
Details for the file cdk8s-redis-0.1.317.tar.gz
.
File metadata
- Download URL: cdk8s-redis-0.1.317.tar.gz
- Upload date:
- Size: 258.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2cfb30d7b1a09b385476515672e208aff7696fb09c0c46c68b41f988ccb253ac |
|
MD5 | 5c0ffd4294f9bc3972ae7de2219e81c3 |
|
BLAKE2b-256 | e4e3ca797a4ec7e064523dc901cbfea39cc49dd82816f67f4a6e52bbbef36e54 |
File details
Details for the file cdk8s_redis-0.1.317-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_redis-0.1.317-py3-none-any.whl
- Upload date:
- Size: 257.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4caf90bfd1a381978ec83b48c36422b2c3412396afc38c5ee19e0002d6863754 |
|
MD5 | a4ce7602f367bc32196db216e126c841 |
|
BLAKE2b-256 | d1a2790c15853498753e6c1e8ae18b9b15315089104c2ced7c7bf56733049e9b |