diff --git a/CHANGELOG.md b/CHANGELOG.md index b20b0754..081db745 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.10.1] - 2026-02-13 +- Hotfix on wait_deployment_iteration + ## [1.10.0] - 2026-01-14 - Add support to configure the traffic manager nginx through a configmap. - Add **k8s/diagnose** documentation && new checks diff --git a/k8s/deployment/wait_deployment_active b/k8s/deployment/wait_deployment_active index ab5186f3..2789ee3f 100755 --- a/k8s/deployment/wait_deployment_active +++ b/k8s/deployment/wait_deployment_active @@ -7,7 +7,7 @@ LATEST_TIMESTAMP="" SKIP_DEPLOYMENT_STATUS_CHECK="${SKIP_DEPLOYMENT_STATUS_CHECK:=false}" while true; do - ((iteration++)) + ((++iteration)) if [ $iteration -gt $MAX_ITERATIONS ]; then echo "ERROR: Timeout waiting for deployment. Maximum iterations (${MAX_ITERATIONS}) reached."