Skip to content
Closed
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion k8s/deployment/wait_deployment_active
Original file line number Diff line number Diff line change
Expand Up @@ -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."

Expand Down