Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Howlla authored Oct 8, 2023
2 parents 1fd56ca + 5960e95 commit 633850b
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/existing-eks-opensource-observability-pattern/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ export default class ExistingEksOpenSourceobservabilityPattern {
.account(account)
.region(region)
.version('auto')
.withAmpProps(ampAddOnProps)
.enableOpenSourcePatternAddOns()
.withAmpProps(ampAddOnProps)
.clusterProvider(importClusterProvider)
.resourceProvider(blueprints.GlobalResources.Vpc, new blueprints.VpcProvider(vpcId)) // this is required with import cluster provider
.resourceProvider(ampWorkspaceName, new blueprints.CreateAmpProvider(ampWorkspaceName, ampWorkspaceName))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ export default class AmpMonitoringConstruct {
.account(account)
.region(region)
.version('auto')
.withAmpProps(ampAddOnProps)
.enableOpenSourcePatternAddOns()
.withAmpProps(ampAddOnProps)
.resourceProvider(ampWorkspaceName, new blueprints.CreateAmpProvider(ampWorkspaceName, ampWorkspaceName))
.addOns(...addOns)
.teams(new team.TeamGeordi, new team.CorePlatformTeam);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export default class GrafanaOperatorConstruct {
Reflect.defineMetadata("ordered", true, blueprints.addons.GrafanaOperatorAddon); //sets metadata ordered to true for GrafanaOperatorAddon

const addOns: Array<blueprints.ClusterAddOn> = [
new blueprints.addons.XrayAdotAddOn(),
new blueprints.addons.ClusterAutoScalerAddOn(),
new blueprints.addons.SecretsStoreAddOn(),
new blueprints.addons.ExternalsSecretsAddOn(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ export default class SingleNewEksGpuOpenSourceObservabilityPattern {
.account(account)
.region(region)
.version('auto')
.withAmpProps(ampAddOnProps)
.enableOpenSourcePatternAddOns()
.withAmpProps(ampAddOnProps)
.resourceProvider(ampWorkspaceName, new blueprints.CreateAmpProvider(ampWorkspaceName, ampWorkspaceName))
.clusterProvider(
new blueprints.GenericClusterProvider({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ export default class SingleNewEksOpenSourceobservabilityPattern {
.account(account)
.region(region)
.version('auto')
.withAmpProps(ampAddOnProps)
.enableOpenSourcePatternAddOns()
.withAmpProps(ampAddOnProps)
.resourceProvider(ampWorkspaceName, new blueprints.CreateAmpProvider(ampWorkspaceName, ampWorkspaceName))
.addOns(...addOns)
.build(scope, stackId);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@
"aws-cdk": "2.99.1",
"xml2js": "0.5.0"
}
}
}

0 comments on commit 633850b

Please sign in to comment.