From 2ae4383fc2a62cfa28fae5b599e4c2f9cabc6340 Mon Sep 17 00:00:00 2001 From: Scott Seago Date: Wed, 13 Sep 2023 13:24:09 -0400 Subject: [PATCH] issue #6807: Retry failed create when using generateName When creating resources with generateName, apimachinery does not guarantee uniqueness when it appends the random suffix to the generateName stub, so if it fails with already exists error, we need to retry. Signed-off-by: Scott Seago --- changelogs/unreleased/6943-sseago | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelogs/unreleased/6943-sseago diff --git a/changelogs/unreleased/6943-sseago b/changelogs/unreleased/6943-sseago new file mode 100644 index 0000000000..2055df15a2 --- /dev/null +++ b/changelogs/unreleased/6943-sseago @@ -0,0 +1 @@ +Retry failed create when using generateName