Skip to content

Commit

Permalink
fix CI build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Howlla committed Mar 21, 2024
1 parent a7d2847 commit 869f92c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ export default class SingleNewEksAWSNativeFargateobservabilityConstruct {
};

const coreDnsAddOnProps : blueprints.CoreDnsAddOnProps = {
version:"v1.10.1-eksbuild.6",
configurationValues:{
computeType: "Fargate"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ export class FluentBitConfigMap implements blueprints.ClusterAddOn {
}

deploy(clusterInfo: blueprints.ClusterInfo): void {
const cluster = clusterInfo.cluster;

const doc = readYamlDocument(__dirname + '/../common/resources/fluent-bit/fluent-bit-fargate-config.ytpl');
const manifest = doc.split("---").map(e => loadYaml(e));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,13 @@ export default class SingleNewEksFargateOpenSourceObservabilityConstruct {
logStreamPrefix: "from-fluent-bit-",
} as FluentBitConfigMapProps;

const coreDnsAddOnProps : blueprints.CoreDnsAddOnProps = {
configurationValues: { computeType: "Fargate" }
}

Check failure on line 124 in lib/single-new-eks-fargate-opensource-observability-pattern/index.ts

View workflow job for this annotation

GitHub Actions / build (18)

Missing semicolon
Reflect.defineMetadata("ordered", true, blueprints.addons.GrafanaOperatorAddon);
const addOns: Array<blueprints.ClusterAddOn> = [
new blueprints.addons.VpcCniAddOn(),
new blueprints.addons.CoreDnsAddOn({
version: "v1.10.1-eksbuild.6",
configurationValues: { computeType: "Fargate" }
}),
new blueprints.addons.CoreDnsAddOn("v1.10.1-eksbuild.6",coreDnsAddOnProps),
new blueprints.addons.KubeProxyAddOn(),
new blueprints.addons.AwsLoadBalancerControllerAddOn(),
new blueprints.addons.CertManagerAddOn({
Expand Down

0 comments on commit 869f92c

Please sign in to comment.