-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.js
32 lines (27 loc) · 1.05 KB
/
.projenrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
const { ConstructLibraryCdk8s } = require('projen/lib/cdk8s');
const project = new ConstructLibraryCdk8s({
author: 'Hunter Thompson',
authorAddress: '[email protected]',
description: 'Replicated, password protected redis cluster setup.',
defaultReleaseBranch: 'main',
name: 'cdk8s-redis-cluster',
stability: 'experimental',
repositoryUrl: 'https://github.com/opencdk8s/cdk8s-redis-cluster.git',
cdk8sVersion: '2.2.74',
constructsVersion: '10.0.5',
githubOptions: {
mergify: true,
},
gitignore: [
'*tags*',
],
publishToGo: {
moduleName: 'github.com/opencdk8s/cdk8s-redis-cluster-go',
},
// deps: [], /* Runtime dependencies of this module. */
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
// devDeps: [], /* Build dependencies for this module. */
// packageName: undefined, /* The "name" in package.json. */
// release: undefined, /* Add release management to this project. */
});
project.synth();