Skip to content

Commit

Permalink
Merge pull request #679 from aws-quickstart/task/1.7.3-release-prep
Browse files Browse the repository at this point in the history
Release prep for 1.7.3, updated CDK, helm chart versions, core addons…
  • Loading branch information
shapirov103 authored May 11, 2023
2 parents 0351628 + 58ef765 commit 7f17436
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 21 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.76.0
npm install -g aws-cdk@2.78.0
```

Verify the installation.

```bash
cdk --version
# must output 2.76.0
# must output 2.78.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.76.0
npm install -g aws-cdk@2.78.0
```

Verify the installation.

```bash
cdk --version
# must output 2.76.0
# must output 2.78.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.76.0 # may require sudo (Ubuntu) depending on configuration
cdk --version # must produce 2.76.0
npm install -g aws-cdk@2.78.0 # may require sudo (Ubuntu) depending on configuration
cdk --version # must produce 2.78.0
mkdir my-blueprints
cd my-blueprints
cdk init app --language typescript
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/cert-manager/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const defaultProps: HelmAddOnProps & CertManagerAddOnProps = {
name: "blueprints-cert-manager-addon",
namespace: "cert-manager",
chart: "cert-manager",
version: "1.11.1",
version: "1.11.2",
release: "cert-manager",
repository: "https://charts.jetstack.io",
values: {},
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/coredns/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export class CoreDnsAddOn extends CoreAddOn {
constructor(version?: string) {
super({
addOnName: "coredns",
version: version ?? "v1.9.3-eksbuild.2",
version: version ?? "v1.9.3-eksbuild.3",
saName: "coredns"
});
}
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/ebs-csi-driver/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ interface EbsCsiDriverAddOnProps {
*/
const defaultProps = {
addOnName: "aws-ebs-csi-driver",
version: "v1.16.1-eksbuild.1",
version: "v1.18.0-eksbuild.1",
saName: "ebs-csi-controller-sa",
};

Expand Down
2 changes: 1 addition & 1 deletion lib/addons/efs-csi-driver/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export interface EfsCsiDriverProps extends HelmAddOnUserProps {
* Defaults options for the add-on
*/
const defaultProps: EfsCsiDriverProps = {
version: '2.4.1',
version: '2.4.3',
namespace: "kube-system",
repository: "https://kubernetes-sigs.github.io/aws-efs-csi-driver/",
name: EFS_CSI_DRIVER,
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/external-dns/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const defaultProps = {
namespace: 'external-dns',
repository: 'https://charts.bitnami.com/bitnami',
release: 'blueprints-addon-external-dns',
version: '6.18.0',
version: '6.19.2',
values: {},
};

Expand Down
2 changes: 1 addition & 1 deletion lib/addons/kube-state-metrics/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const defaultProps: HelmAddOnProps & KubeStateMetricsAddOnProps = {
name: "kube-state-metrics",
namespace: "kube-system",
chart: "kube-state-metrics",
version: "5.6.0",
version: "5.6.1",
release: "kube-state-metrics",
repository: "https://prometheus-community.github.io/helm-charts",
values: {},
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/nginx/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const defaultProps: NginxAddOnProps = {
name: "nginx-ingress",
chart: "nginx-ingress",
release: "blueprints-addon-nginx",
version: "0.17.0",
version: "0.17.1",
repository: "https://helm.nginx.com/stable",
backendProtocol: 'tcp',
crossZoneEnabled: true,
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/prometheus-node-exporter/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const defaultProps: HelmAddOnProps & PrometheusNodeExporterAddOnProps = {
name: "prometheus-node-exporter",
namespace: "prometheus-node-exporter",
chart: "prometheus-node-exporter",
version: "4.17.0",
version: "4.17.2",
release: "prometheus-node-exporter",
repository: "https://prometheus-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 @@ -357,7 +357,7 @@ class CodePipeline {
input: codePipelineSource,
installCommands: [
'n stable',
'npm install -g aws-cdk@2.76.0',
'npm install -g aws-cdk@2.78.0',
'npm install',
],
commands: ['npm run build', 'npx cdk synth']
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
"@types/dot-object": "^2.1.2",
"@types/jest": "^29.5.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.15.12",
"@types/node": "^18.16.6",
"@types/semver": "^7.3.13",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"aws-cdk": "^2.76.0",
"aws-cdk": "^2.78.0",
"copyfiles": "^2.4.1",
"eslint": "^8.38.0",
"jest": "^29.5.0",
"json-schema-to-typescript": "^12.0.0",
"json-schema-to-typescript": "^13.0.1",
"lint": "^1.1.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
Expand All @@ -34,16 +34,16 @@
},
"dependencies": {
"@aws-cdk/lambda-layer-kubectl-v23": "^2.0.7",
"@aws-cdk/lambda-layer-kubectl-v24": "^2.0.167",
"@aws-cdk/lambda-layer-kubectl-v24": "^2.0.168",
"@aws-cdk/lambda-layer-kubectl-v25": "^2.0.3",
"@aws-sdk/client-secrets-manager": "^3.316.0",
"@types/assert": "^1.5.6",
"@types/bcrypt": "^5.0.0",
"@types/lodash.clonedeep": "^4.5.7",
"@types/uuid": "^9.0.1",
"aws-cdk-lib": "2.76.0",
"aws-cdk-lib": "2.78.0",
"bcrypt": "^5.1.0",
"constructs": "^10.2.1",
"constructs": "^10.2.18",
"dot-object": "^2.1.4",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
Expand Down

0 comments on commit 7f17436

Please sign in to comment.