From 98da355eecee89fc621c081922512c4806803ee6 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Mon, 16 Feb 2026 00:05:19 +0000 Subject: [PATCH] Switch to using cinc for testing --- .kitchen.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.kitchen.yml b/.kitchen.yml index 326033b0c..3728d9eca 100644 --- a/.kitchen.yml +++ b/.kitchen.yml @@ -1,8 +1,8 @@ --- driver: name: dokken - chef_image: ghcr.io/firefishy/chef-docker-image - chef_version: latest + chef_image: docker.io/cincproject/cinc + chef_version: 18 volumes: - /var/lib/docker env: @@ -24,6 +24,8 @@ provisioner: data_bags_path: test/data_bags slow_resource_report: true clean_dokken_sandbox: true + product_name: cinc + chef_binary: /opt/cinc/bin/cinc-client attributes: networking: dnssec: "false" # Disable DNSSEC as occasionally unreliable in GitHub Actions @@ -84,12 +86,12 @@ platforms: lifecycle: pre_create: | if command -v podman >/dev/null 2>&1; then - podman create --name chef-latest --replace ghcr.io/firefishy/chef-docker-image:latest sh - podman start chef-latest + podman create --name chef-18 --replace docker.io/cincproject/cinc:18 sh + podman start chef-18 fi post_destroy: | if command -v podman >/dev/null 2>&1; then - podman container rm -iv chef-latest + podman container rm -iv chef-18 fi suites: -- 2.39.5