From b9ef2989c53e09a4cb33709d16fe6332ecaab960 Mon Sep 17 00:00:00 2001 From: Marek Bednarczyk <43985995+bemarek@users.noreply.github.com> Date: Thu, 1 May 2025 11:20:39 +0200 Subject: [PATCH] Update README.adoc Corrected status condition type to match the one defined in readinessGates. --- foundational/HealthProbe/README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/foundational/HealthProbe/README.adoc b/foundational/HealthProbe/README.adoc index 07ba3ac..4ba2a04 100644 --- a/foundational/HealthProbe/README.adoc +++ b/foundational/HealthProbe/README.adoc @@ -170,7 +170,7 @@ Then let's patch the Pod's status and add the readiness condition: kubectl patch $pod --type='json' --subresource=status \ -p='[{"op": "add", "path": "/status/conditions/-", - "value": {"type": "k8spatterns.com/RandomReady", "status": "True"}}]' + "value": {"type": "k8spatterns.io/RandomReady", "status": "True"}}]' ---- Finally, let's check again if the Pod gets ready with the readiness gate fulfilled: