From 9e1765e1052154057b451f8e458e9715909ce4b6 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Thu, 21 May 2026 18:12:03 +0100 Subject: [PATCH] Fix kitchen podman support for native cinc support --- .kitchen.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.kitchen.yml b/.kitchen.yml index 1bc0324a5..c789adfc4 100644 --- a/.kitchen.yml +++ b/.kitchen.yml @@ -83,12 +83,12 @@ platforms: lifecycle: pre_create: | if command -v podman >/dev/null 2>&1; then - podman create --name chef-18 --replace docker.io/cincproject/cinc:18 sh - podman start chef-18 + podman create --name cinc-18 --replace docker.io/cincproject/cinc:18 sh + podman start cinc-18 fi post_destroy: | if command -v podman >/dev/null 2>&1; then - podman container rm -iv chef-18 + podman container rm -iv cinc-18 fi suites: -- 2.47.3