Skip to content

Commit

Permalink
updated CDK to 2.115.0 and increment helm versions for appmesh and flux
Browse files Browse the repository at this point in the history
  • Loading branch information
shapirov103 committed Dec 15, 2023
1 parent 6a770ac commit b622962
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.114.1
npm install -g aws-cdk@2.115.0
```

Verify the installation.

```bash
cdk --version
# must output 2.114.1
# must output 2.115.0
```

Create a new CDK project. We use `typescript` for this example.
Expand Down
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.114.1
npm install -g aws-cdk@2.115.0
```

Verify the installation.

```bash
cdk --version
# must output 2.114.1
# must output 2.115.0
```

Create a new CDK project. We use `typescript` for this example.
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ Create a directory that represents you project (e.g. `my-blueprints`) and then c
```bash
npm install -g n # may require sudo
n stable # may require sudo
npm install -g aws-cdk@2.114.1 # may require sudo (Ubuntu) depending on configuration
cdk --version # must produce 2.114.1
npm install -g aws-cdk@2.115.0 # may require sudo (Ubuntu) depending on configuration
cdk --version # must produce 2.115.0
mkdir my-blueprints
cd my-blueprints
cdk init app --language typescript
Expand Down
2 changes: 1 addition & 1 deletion docs/internal/ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ cd cdk-eks-blueprints
Install CDK (please review and install any missing [pre-requisites](https://docs.aws.amazon.com/cdk/latest/guide/getting_started.html) for your environment)

```sh
npm install -g aws-cdk@2.114.1
npm install -g aws-cdk@2.115.0
```

Install the dependencies for this project.
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/appmesh/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const defaultProps = {
name: "appmesh-controller",
namespace: "appmesh-system",
chart: "appmesh-controller",
version: "1.12.5",
version: "1.12.7",
release: "appmesh-release",
repository: "https://aws.github.io/eks-charts"
};
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/fluxcd/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const defaultProps: HelmAddOnProps & FluxCDAddOnProps = {
name: "fluxcd-addon",
namespace: "flux-system",
chart: "flux2",
version: "2.12.0",
version: "2.12.1",
release: "blueprints-fluxcd-addon",
repository: "https://fluxcd-community.github.io/helm-charts",
values: {},
Expand Down
2 changes: 1 addition & 1 deletion lib/pipelines/code-pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ class CodePipeline {
input: codePipelineSource,
installCommands: [
'n stable',
'npm install -g aws-cdk@2.114.1',
'npm install -g aws-cdk@2.115.0',
`cd ${path} && npm install`,
],
commands: [`cd ${path}`, 'npm run build', 'npx cdk synth ' + app]
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"aws-cdk": "2.114.1",
"aws-cdk": "2.115.0",
"copyfiles": "^2.4.1",
"eslint": "^8.55.0",
"jest": "^29.7.0",
Expand All @@ -47,7 +47,7 @@
"@types/bcrypt": "^5.0.2",
"@types/lodash.clonedeep": "^4.5.9",
"@types/uuid": "^9.0.7",
"aws-cdk-lib": "2.114.1",
"aws-cdk-lib": "2.115.0",
"bcrypt": "^5.1.1",
"constructs": "^10.3.0",
"dot-object": "^2.1.4",
Expand Down

0 comments on commit b622962

Please sign in to comment.