-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1035 from aws-quickstart/task/1.15.1-release-prep
1.15.1 Patch Release
- Loading branch information
Showing
12 changed files
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,14 +48,14 @@ aws --version | |
Install CDK matching the current version of the Blueprints QuickStart (which can be found in package.json). | ||
|
||
```bash | ||
npm install -g [email protected].2 | ||
npm install -g [email protected].3 | ||
``` | ||
|
||
Verify the installation. | ||
|
||
```bash | ||
cdk --version | ||
# must output 2.147.2 | ||
# must output 2.147.3 | ||
``` | ||
|
||
Create a new CDK project. We use `typescript` for this example. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 [email protected].2 | ||
npm install -g [email protected].3 | ||
``` | ||
|
||
Verify the installation. | ||
|
||
```bash | ||
cdk --version | ||
# must output 2.147.2 | ||
# must output 2.147.3 | ||
``` | ||
|
||
Create a new CDK project. We use `typescript` for this example. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 [email protected].2 # may require sudo (Ubuntu) depending on configuration | ||
cdk --version # must produce 2.147.2 | ||
npm install -g [email protected].3 # may require sudo (Ubuntu) depending on configuration | ||
cdk --version # must produce 2.147.3 | ||
mkdir my-blueprints | ||
cd my-blueprints | ||
cdk init app --language typescript | ||
|
@@ -57,7 +57,7 @@ npm ERR! peer bundled aws-cdk-lib@"2.133.0" from @aws-quickstart/eks-blueprints@ | |
npm ERR! node_modules/@aws-quickstart/eks-blueprint | ||
``` | ||
|
||
This message means that the version of CDK that the customer is using is different from the version of CDK used in EKS Blueprints. Locate the line `peer bundled` and check the expected version of the CDK. Make sure that in your `package.json` the version is set to the expected. In this example, `package.json` contained `"aws-cdk-lib": "2.133.0"`, while the expected version was `2.147.2`. | ||
This message means that the version of CDK that the customer is using is different from the version of CDK used in EKS Blueprints. Locate the line `peer bundled` and check the expected version of the CDK. Make sure that in your `package.json` the version is set to the expected. In this example, `package.json` contained `"aws-cdk-lib": "2.133.0"`, while the expected version was `2.147.3`. | ||
|
||
**Note**: after the initial installation, upgrading the version of CDK to an incompatible higher/lower version will produce a warning, but will succeed. For community support (submitting GitHub issues) please make sure you have a matching version configured. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 [email protected].2 | ||
npm install -g [email protected].3 | ||
``` | ||
|
||
Install the dependencies for this project. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -457,7 +457,7 @@ class CodePipeline { | |
primaryOutputDirectory: `${path}/cdk.out`, | ||
installCommands: [ | ||
'n stable', | ||
'npm install -g [email protected].2', | ||
'npm install -g [email protected].3', | ||
`cd $CODEBUILD_SRC_DIR/${path} && npm install` | ||
], | ||
commands: [`cd $CODEBUILD_SRC_DIR/${path}`, 'npm run build', 'npx cdk synth ' + app] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters