rubenf
rubenf16mo ago

Any anyone here making Windmill work on

Any anyone here making Windmill work on top of AWS Aurora ? Any issues they've noticed ?
2 Replies
Sindre
Sindre16mo ago
Yes, I'm using it on top og aurora. cdk setup:
const dbCluster = new rds.DatabaseCluster(this, `${name}-db-cluster`, {
engine: rds.DatabaseClusterEngine.auroraPostgres({
version: rds.AuroraPostgresEngineVersion.VER_14_3,
}),
...

// add capacity to the db cluster to enable scaling
Aspects.of(dbCluster).add({
visit(node) {
if (node instanceof rds.CfnDBCluster) {
node.serverlessV2ScalingConfiguration = {
minCapacity: 0.5, // min capacity is 0.5 vCPU
maxCapacity: 1, // max capacity is 1 vCPU (default)
};
}
},
});
const dbCluster = new rds.DatabaseCluster(this, `${name}-db-cluster`, {
engine: rds.DatabaseClusterEngine.auroraPostgres({
version: rds.AuroraPostgresEngineVersion.VER_14_3,
}),
...

// add capacity to the db cluster to enable scaling
Aspects.of(dbCluster).add({
visit(node) {
if (node instanceof rds.CfnDBCluster) {
node.serverlessV2ScalingConfiguration = {
minCapacity: 0.5, // min capacity is 0.5 vCPU
maxCapacity: 1, // max capacity is 1 vCPU (default)
};
}
},
});
have not have any issues with windmil, except the initial setup with superuser roles. That are now descriped in the docs.
rubenf
rubenf16mo ago
Thanks, I will be able to communicate that to one of our enterprise poc that requested it