From 4a45ce6b4f78c94a4c8a4de06f6397576dff9c6d Mon Sep 17 00:00:00 2001 From: Alexandre Rodriguez Date: Wed, 15 Nov 2023 11:11:39 +0100 Subject: [PATCH] salt: Bump attempts on `check_object_ready` --- CHANGELOG.md | 4 ++++ salt/metalk8s/addons/metalk8s-operator/deployed/init.sls | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05ecbdfab6..27ec8b0c28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ that prevents re-run of the bootstrap script if it fails at a specific point (PR[4196](https://github.com/scality/metalk8s/pull/4196)) +- Bump the attempts to wait for the Operator and ClusterConfig + to be Ready + (PR[#4199](https://github.com/scality/metalk8s/pull/4199)) + ## Release 126.0.1 ### Bug fixes diff --git a/salt/metalk8s/addons/metalk8s-operator/deployed/init.sls b/salt/metalk8s/addons/metalk8s-operator/deployed/init.sls index 87e410aaa9..3223c9b583 100644 --- a/salt/metalk8s/addons/metalk8s-operator/deployed/init.sls +++ b/salt/metalk8s/addons/metalk8s-operator/deployed/init.sls @@ -9,7 +9,7 @@ Wait for the MetalK8s Operator to be Ready: name=metalk8s-operator-controller-manager, namespace=kube-system) - comment: Wait for the MetalK8s Operator to be Ready - retry: - attempts: 10 + attempts: 30 - require: - sls: metalk8s.addons.metalk8s-operator.deployed.manifests @@ -21,6 +21,6 @@ Wait for the ClusterConfig to be Ready: name=main) - comment: Wait for the ClusterConfig to be Ready - retry: - attempts: 10 + attempts: 30 - require: - test: Wait for the MetalK8s Operator to be Ready