Skip to content

Commit

Permalink
Merge pull request #262 from oldgiova/mender-3.7.3-bump
Browse files Browse the repository at this point in the history
Bump to Mender 3.7.3
  • Loading branch information
oldgiova authored Mar 22, 2024
2 parents f548508 + b4009ea commit da542b3
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
13 changes: 11 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ variables:
RUN_HELM_CHART_INSTALL:
value: "false"
description: "Run Helm Chart tests"
options:
- "true"
- "false"
ROLE_ARN:
value: "arn:aws:iam::017659451055:role/nt-mender-helm-eksctl-test"
description: "AWS IAM role which executes the AWS jobs"
Expand All @@ -19,12 +22,18 @@ variables:
RUN_PLAYGROUND:
value: "false"
description: "Run EKS setup playground"
options:
- "true"
- "false"
PLAYGROUND_EKS_TIMEOUT:
value: 3600
description: "Default timeout for the EKS playground setup"
USE_SPOT_INSTANCES:
value: "true"
description: "Use spot instances for cost savings"
options:
- "true"
- "false"

stages:
- build
Expand Down Expand Up @@ -479,14 +488,14 @@ test:helm_chart_upgrade_from_current_lts_to_current_release:
mender/mender || exit 3;
- bash tests/test-001-wait-for-pods-to-be-ready.sh
- |
echo "INFO - installing mender tag ${MENDER_CURRENT_RELEASE_TAG:-mender-3.7.2}"
echo "INFO - installing mender tag ${MENDER_CURRENT_RELEASE_TAG:-mender-3.7.3}"
helm upgrade -i mender \
-f mender/values.yaml \
-f tests/keys.yaml \
-f tests/values-helmci.yaml \
--wait \
--timeout=${HELM_UPGRADE_TIMEOUT:-15m} \
--set global.image.tag="${MENDER_CURRENT_RELEASE_TAG:-mender-3.7.2}" \
--set global.image.tag="${MENDER_CURRENT_RELEASE_TAG:-mender-3.7.3}" \
--set global.image.username=${REGISTRY_MENDER_IO_USERNAME} \
--set global.image.password="${REGISTRY_MENDER_IO_PASSWORD}" \
--set global.s3.AWS_ACCESS_KEY_ID="${MINIO_accessKey}" \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ The following table lists the global, default, and other parameters supported by
| `global.image.registry` | Global Docker image registry | `registry.mender.io` |
| `global.image.username` | Global Docker image registry username | `nil` |
| `global.image.password` | Global Docker image registry username | `password` |
| `global.image.tag` | Global Docker image registry tag | `mender-3.7.2` |
| `global.image.tag` | Global Docker image registry tag | `mender-3.7.3` |
| `global.mongodb.existingSecret` | MongoDB existing secret with keys: `MONGO` and `MONGO_URL` both with MongoDB connection string format | `null` |
| `global.mongodb.URL` | MongoDB URL | `mongodb://mongodb` |
| `global.nats.existingSecret` | NATS existing secret with key: `NATS_URI` and NATS connection string `nats://...` | `null` |
Expand Down
1 change: 1 addition & 0 deletions mender/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* MongoDB sub-chart
* Bump chart version to 13.18.5
* Bump app version to MongoDB 6.0 (tag: `6.0.13`)
* Upgrade to Mender version `3.7.3`.

> If your running an existing cluster with MongoDB 5.0, we recommend following
> the upgrade procedure from the
Expand Down
2 changes: 1 addition & 1 deletion mender/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: "3.7.2"
appVersion: "3.7.3"
description: Mender is a robust and secure way to update all your software and deploy your IoT devices at scale with support for customization
name: mender
version: 5.6.0
Expand Down
2 changes: 1 addition & 1 deletion mender/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ global:
registry: registry.mender.io
username: null
password: null
tag: mender-3.7.2
tag: mender-3.7.3

mongodb:
existingSecret: ""
Expand Down

0 comments on commit da542b3

Please sign in to comment.