diff --git a/CODEOWNERS b/CODEOWNERS index 36c0ba177..6a849e0db 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1 +1 @@ -* @aws-quickstart/ssp-eks-internal @aws-ia-ci @aws-quickstart/aws_quickstart_team @askulkarni2 @parkand1 @shapirov10 +* @aws-quickstart/ssp-eks-internal @aws-ia-ci @aws-quickstart/aws_quickstart_team @askulkarni2 @parkand1 @shapirov103 youngjeong46 diff --git a/README.md b/README.md index c44722426..f578277a8 100644 --- a/README.md +++ b/README.md @@ -44,14 +44,14 @@ aws --version Install CDK matching the current version of the Blueprints QuickStart (which can be found in package.json). ```bash -npm install -g aws-cdk@2.59.0 +npm install -g aws-cdk@2.60.0 ``` Verify the installation. ```bash cdk --version -# must output 2.59.0 +# must output 2.60.0 ``` Create a new CDK project. We use `typescript` for this example. diff --git a/docs/README.md b/docs/README.md index 40e5069f2..075ceab01 100644 --- a/docs/README.md +++ b/docs/README.md @@ -44,14 +44,14 @@ aws --version Install CDK matching the current version of the Blueprints QuickStart (which can be found in package.json). ```bash -npm install -g aws-cdk@2.59.0 +npm install -g aws-cdk@2.60.0 ``` Verify the installation. ```bash cdk --version -# must output 2.59.0 +# must output 2.60.0 ``` Create a new CDK project. We use `typescript` for this example. diff --git a/docs/getting-started.md b/docs/getting-started.md index 195061ecf..bd26467f5 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -25,8 +25,8 @@ Create a directory that represents you project (e.g. `my-blueprints`) and then c ```bash n stable # may require sudo -npm install -g aws-cdk@2.59.0 # may require sudo (Ubuntu) depending on configuration -cdk --version # must produce 2.59.0 +npm install -g aws-cdk@2.60.0 # may require sudo (Ubuntu) depending on configuration +cdk --version # must produce 2.60.0 mkdir my-blueprints cd my-blueprints cdk init app --language typescript diff --git a/lib/addons/aws-loadbalancer-controller/index.ts b/lib/addons/aws-loadbalancer-controller/index.ts index e5d53029f..fc55fe1df 100644 --- a/lib/addons/aws-loadbalancer-controller/index.ts +++ b/lib/addons/aws-loadbalancer-controller/index.ts @@ -49,7 +49,7 @@ const defaultProps: AwsLoadBalancerControllerProps = { chart: AWS_LOAD_BALANCER_CONTROLLER, repository: 'https://aws.github.io/eks-charts', release: AWS_LOAD_BALANCER_CONTROLLER, - version: '1.4.6', + version: '1.4.7', enableShield: false, enableWaf: false, enableWafv2: false, diff --git a/lib/addons/nginx/index.ts b/lib/addons/nginx/index.ts index d3b28d22a..551165a56 100644 --- a/lib/addons/nginx/index.ts +++ b/lib/addons/nginx/index.ts @@ -59,7 +59,7 @@ const defaultProps: NginxAddOnProps = { name: "nginx-ingress", chart: "nginx-ingress", release: "blueprints-addon-nginx", - version: "0.15.2", + version: "0.16.0", repository: "https://helm.nginx.com/stable", backendProtocol: 'tcp', crossZoneEnabled: true, diff --git a/lib/pipelines/code-pipeline.ts b/lib/pipelines/code-pipeline.ts index 3e2e68340..0ac8444d9 100644 --- a/lib/pipelines/code-pipeline.ts +++ b/lib/pipelines/code-pipeline.ts @@ -357,7 +357,7 @@ class CodePipeline { input: codePipelineSource, installCommands: [ 'n stable', - 'npm install -g aws-cdk@2.59.0', + 'npm install -g aws-cdk@2.60.0', 'npm install', ], commands: ['npm run build', 'npx cdk synth'] diff --git a/package.json b/package.json index afc14b53c..a14d7105a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aws-quickstart/eks-blueprints", - "version": "1.5.3", + "version": "1.5.4", "license": "Apache-2.0", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -19,7 +19,7 @@ "@types/semver": "^7.3.13", "@typescript-eslint/eslint-plugin": "^5.44.0", "@typescript-eslint/parser": "^5.44.0", - "aws-cdk": "2.59.0", + "aws-cdk": "2.60.0", "copyfiles": "^2.4.1", "eslint": "^8.26.0", "jest": "^29.2.2", @@ -36,7 +36,7 @@ "@types/assert": "^1.5.6", "@types/bcrypt": "^5.0.0", "@types/lodash.clonedeep": "^4.5.7", - "aws-cdk-lib": "2.59.0", + "aws-cdk-lib": "2.60.0", "aws-sdk": "2.1260.0", "bcrypt": "^5.1.0", "dot-object": "^2.1.4",