From 9fa46bea4395153658e6b8374c3b4ee850fc5674 Mon Sep 17 00:00:00 2001 From: Hao Liu <44379968+TheRealHaoLiu@users.noreply.github.com> Date: Wed, 5 Jun 2024 14:07:08 -0400 Subject: [PATCH] Enable readiness probe for task pod in CI (#1891) Avoid race condition where job launch before task container is ready --- molecule/default/templates/awx_cr_molecule.yml.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/molecule/default/templates/awx_cr_molecule.yml.j2 b/molecule/default/templates/awx_cr_molecule.yml.j2 index 3f11c69ae..be8a8a358 100644 --- a/molecule/default/templates/awx_cr_molecule.yml.j2 +++ b/molecule/default/templates/awx_cr_molecule.yml.j2 @@ -45,6 +45,7 @@ spec: extra_settings: - setting: LOG_AGGREGATOR_LEVEL value: "'DEBUG'" + task_readiness_period: 15 {% if additional_fields is defined %} {{ additional_fields | to_nice_yaml | indent(2) }} {% endif %}