Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task/1.10.0 release prep #753

Merged
merged 2 commits into from
Jul 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.83.1
npm install -g aws-cdk@2.86.0
```

Verify the installation.

```bash
cdk --version
# must output 2.83.1
# must output 2.86.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.83.1
npm install -g aws-cdk@2.86.0
```

Verify the installation.

```bash
cdk --version
# must output 2.83.1
# must output 2.86.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.83.1 # may require sudo (Ubuntu) depending on configuration
cdk --version # must produce 2.83.1
npm install -g aws-cdk@2.86.0 # may require sudo (Ubuntu) depending on configuration
cdk --version # must produce 2.86.0
mkdir my-blueprints
cd my-blueprints
cdk init app --language typescript
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/apache-airflow/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const AIRFLOWPVC = 'efs-apache-airflow-pvc';
name: AIRFLOW,
namespace: AIRFLOW,
chart: AIRFLOW,
version: "1.9.0",
version: "1.10.0",
release: RELEASE,
repository: "https://airflow.apache.org",
enableAlb: false,
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/aws-for-fluent-bit/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const defaultProps: AwsForFluentBitAddOnProps = {
name: 'fluent-bit',
chart: 'aws-for-fluent-bit',
release: "blueprints-addon-aws-for-fluent-bit",
version: '0.1.24',
version: '0.1.27',
repository: 'https://aws.github.io/eks-charts',
namespace: 'kube-system',
createNamespace: false,
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/aws-loadbalancer-controller/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const defaultProps: AwsLoadBalancerControllerProps = {
chart: AWS_LOAD_BALANCER_CONTROLLER,
repository: 'https://aws.github.io/eks-charts',
release: AWS_LOAD_BALANCER_CONTROLLER,
version: '1.5.3',
version: '1.5.4',
enableShield: false,
enableWaf: false,
enableWafv2: false,
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/calico-operator/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export interface CalicoOperatorAddOnProps extends HelmAddOnUserProps {
const defaultProps = {
name: 'calico-operator',
namespace: 'calico-operator',
version: 'v3.26.0',
version: 'v3.26.1',
chart: "tigera-operator",
release: "bp-addon-calico-operator",
repository: "https://projectcalico.docs.tigera.io/charts"
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.12.1",
version: "1.12.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.3",
version: version ?? "v1.9.3-eksbuild.5",
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 @@ export interface EbsCsiDriverAddOnProps {
*/
const defaultProps = {
addOnName: "aws-ebs-csi-driver",
version: "v1.19.0-eksbuild.1",
version: "v1.20.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.5',
version: '2.4.6',
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-secrets/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const defaultProps: ExternalsSecretsAddOnProps = {
name: "external-secrets",
chart: "external-secrets",
release: "blueprints-addon-external-secrets",
version: "0.8.3",
version: "0.9.0",
repository: "https://charts.external-secrets.io",
namespace: "external-secrets",
values: {},
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 @@ -82,7 +82,7 @@ const defaultProps: HelmAddOnProps & FluxCDAddOnProps = {
name: "fluxcd-addon",
namespace: "flux-system",
chart: "flux2",
version: "2.8.0",
version: "2.9.0",
release: "blueprints-fluxcd-addon",
repository: "https://fluxcd-community.github.io/helm-charts",
values: {},
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/keda/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const defaultProps: HelmAddOnProps & KedaAddOnProps = {
name: "blueprints-keda-addon",
chart: "keda",
namespace:"keda",
version: "2.10.2",
version: "2.11.1",
release: "keda",
repository: "https://kedacore.github.io/charts",
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.7.0",
version: "5.8.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.1",
version: "0.18.0",
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.5",
version: "4.18.1",
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 @@ -439,7 +439,7 @@ class CodePipeline {
input: codePipelineSource,
installCommands: [
'n stable',
'npm install -g aws-cdk@2.83.1',
'npm install -g aws-cdk@2.86.0',
'npm install',
],
commands: ['npm run build', 'npx cdk synth ' + app]
Expand Down
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-quickstart/eks-blueprints",
"version": "1.9.2",
"version": "1.10.0",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -21,10 +21,10 @@
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"aws-cdk": "^2.83.1",
"aws-cdk": "^2.86.0",
"copyfiles": "^2.4.1",
"eslint": "^8.38.0",
"jest": "^29.5.0",
"jest": "^29.6.0",
"json-schema-to-typescript": "^13.0.1",
"lint": "^1.1.2",
"ts-jest": "^29.1.0",
Expand All @@ -43,14 +43,14 @@
"@types/bcrypt": "^5.0.0",
"@types/lodash.clonedeep": "^4.5.7",
"@types/uuid": "^9.0.1",
"aws-cdk-lib": "2.83.1",
"aws-cdk-lib": "2.86.0",
"bcrypt": "^5.1.0",
"constructs": "^10.2.33",
"dot-object": "^2.1.4",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"reflect-metadata": "^0.1.13",
"semver": "^7.5.0",
"semver": "^7.5.3",
"simple-base": "^1.0.0",
"sync-request": "6.1.0",
"ts-deepmerge": "^6.0.3",
Expand All @@ -59,5 +59,8 @@
"uuid": "^9.0.0",
"yaml": "^2.2.1",
"zod": "^3.21.4"
},
"overrides": {
"semver": "^7.5.3"
}
}