Skip to content

Commit

Permalink
fix: rebase error - delete app.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
MDavidson17 committed Oct 24, 2023
1 parent 71f59ee commit 3c33a11
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 17 deletions.
15 changes: 0 additions & 15 deletions config/app.ts

This file was deleted.

5 changes: 3 additions & 2 deletions config/cdk8s.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { App } from 'cdk8s';

Check failure on line 1 in config/cdk8s.ts

View workflow job for this annotation

GitHub Actions / Format & Deploy(master)

Run autofix to sort these imports!

import { ArgoSemaphore } from './charts/argo.semaphores';
import { FluentBit } from './charts/fluentbit';
import { Karpenter, KarpenterProvisioner } from './charts/karpenter';
import { CoreDns } from './charts/kube-system.coredns';
import { CfnOutputKeys } from './constants';
import { CLUSTER_NAME } from './constants';
import { CLUSTER_NAME, CfnOutputKeys } from './constants';
import { getCfnOutputs } from './util/cloud.formation';

const app = new App();
Expand All @@ -18,6 +18,7 @@ async function main(): Promise<void> {
}

new ArgoSemaphore(app, 'semaphore', {});
new FluentBit(app, 'fluentbit', {});
new CoreDns(app, 'Dns', {});

const karpenter = new Karpenter(app, 'karpenter', {
Expand Down

0 comments on commit 3c33a11

Please sign in to comment.