Skip to content

Commit

Permalink
feat(stacks.api): associate cert-manager release with fargate profile
Browse files Browse the repository at this point in the history
Signed-off-by: Braden Mars <[email protected]>
  • Loading branch information
BradenM committed Aug 5, 2023
1 parent 6407d39 commit 384177a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/stacks/api/src/cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,13 @@ export const getDefaultAddons = (
),
],
}),
new blueprints.addons.CertManagerAddOn(),
new blueprints.addons.CertManagerAddOn({
values: {
webhook: {
securePort: 10260,
},
},
}),
]
}

Expand Down Expand Up @@ -157,6 +163,6 @@ export const buildClusterBuilder = (
),
})
.fargateProfile('serverless', {
selectors: [{ namespace: 'karpenter' }],
selectors: [{ namespace: 'karpenter' }, { namespace: 'cert-manager' }],
})
}

0 comments on commit 384177a

Please sign in to comment.