cdk8s-redis-sentinel
TypeScript icon, indicating that this package has built-in type declarations

0.0.9 • Public • Published

cdk8s-redis-sentinel

Replicated, password protected redis sentinel statefulset setup. Uses Bitnamis redis-sentinel helm chart as a reference.

Example

  new Redis(chart, 'redis', {
    volumeSize: '10Gi',
    replicas: 2,
    volumeFsType: 'ext4',
    volumeType: 'io1',
    volumeIopsPerGb: '100',
    redisImage: 'test-image',
    redisPassword: 'dGVzdDIK', // base64 encoded
    nodeSelector: {
      test: 'test',
    },
    tolerations: [
      {
        key: 'test',
        operator: 'Equal',
        value: 'test',
      },
    ],
  });

Readme

Keywords

Package Sidebar

Install

npm i cdk8s-redis-sentinel

Weekly Downloads

0

Version

0.0.9

License

Apache-2.0

Unpacked Size

6.81 MB

Total Files

10

Last publish

Collaborators

  • hunter-thompson