Skip to content

Commit

Permalink
fixing review comments for cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ajpaws committed Jun 3, 2024
1 parent 4eb131d commit 81ac009
Show file tree
Hide file tree
Showing 13 changed files with 512 additions and 415 deletions.
10 changes: 5 additions & 5 deletions bin/aws-addon-clusters.ts → bin/crossplane-argocd-gitops.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env node
import * as cdk from 'aws-cdk-lib';
import {K8S_VERSIONS_DEV, MultiClusterOptions} from "./multi-cluster-options";
import {K8S_VERSIONS_DEV, MultiClusterOptions} from "../lib/crossplane-argocd-gitops/multi-cluster-options";
import {CapacityType, KubernetesVersion} from "aws-cdk-lib/aws-eks";
import MultiClusterPipelineConstruct from "./multi-cluster-pipeline";
import MultiClusterPipelineConstruct from "../lib/crossplane-argocd-gitops/multi-cluster-pipeline";
import * as blueprints from "@aws-quickstart/eks-blueprints";
import * as eks from "aws-cdk-lib/aws-eks";
import * as ec2 from "aws-cdk-lib/aws-ec2";
Expand All @@ -25,7 +25,7 @@ const env : MultiClusterOptions = {
gitHubSecret,
nodeGroupCapacityType: CapacityType.ON_DEMAND,
k8sVersions: K8S_VERSIONS_DEV // K8S_VERSIONS_PROD for full deploy
}
};


const mngProps: blueprints.MngClusterProviderProps = {
Expand All @@ -36,10 +36,10 @@ const mngProps: blueprints.MngClusterProviderProps = {
maxSize: 3,
};

console.info("Running CDK with id: addon-tester" );
console.info("Running CDK with id: crossplane-argocd-gitops" );
console.info("Running CDK with: " + JSON.stringify(env));

new MultiClusterPipelineConstruct().buildAsync(app, "addon-tester", env , mngProps).catch(
new MultiClusterPipelineConstruct().buildAsync(app, "crossplane-argocd-gitops", env , mngProps).catch(
(e) => console.log("Pipeline construct failed because of error ", e)
);

54 changes: 0 additions & 54 deletions bin/get-ready-for-test-issues.ts

This file was deleted.

Loading

0 comments on commit 81ac009

Please sign in to comment.