Skip to content

Commit

Permalink
Merge pull request #10 from komodorio/rename-class
Browse files Browse the repository at this point in the history
Rename class
  • Loading branch information
ronahk authored Jan 30, 2023
2 parents e0d592a + 1241647 commit 7d6ba99
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const clusterName = "<cluster name>";
const props = { env: { account, region } };

const addOns: Array<blueprints.ClusterAddOn> = [
new KomdorAddOn({
new KomodorAddOn({
apiKey: "<api key>",
clusterName: clusterName,
values: {}, // additional Helm chart values
Expand Down
4 changes: 2 additions & 2 deletions bin/main.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as cdk from 'aws-cdk-lib';
import * as blueprints from '@aws-quickstart/eks-blueprints';
import { KomdorAddOn } from '../lib';
import { KomodorAddOn } from '../lib';

const app = new cdk.App();

Expand All @@ -10,7 +10,7 @@ const clusterName = '<cluster name>'
const props = { env: { account, region } }

const addOns: Array<blueprints.ClusterAddOn> = [
new KomdorAddOn({
new KomodorAddOn({
apiKey: '<api key>',
clusterName: clusterName,
})
Expand Down
2 changes: 1 addition & 1 deletion lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const defaultProps: HelmAddOnProps & KomodorAddOnProps = {
}
};

export class KomdorAddOn extends HelmAddOn {
export class KomodorAddOn extends HelmAddOn {

readonly options: KomodorAddOnProps;

Expand Down

0 comments on commit 7d6ba99

Please sign in to comment.