From d1b979afac0aad1105f3037cd1a19173a9791ba1 Mon Sep 17 00:00:00 2001 From: yuxshi Date: Wed, 18 Mar 2026 15:42:50 +0900 Subject: [PATCH 1/2] fix(deploy): remove duplicate glob pattern in manifest cleanup loop The openshell-*.yaml pattern was listed twice in the stale manifest cleanup loop, causing redundant iteration over the same files. --- deploy/docker/cluster-entrypoint.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/deploy/docker/cluster-entrypoint.sh b/deploy/docker/cluster-entrypoint.sh index 19fae35d..84b8cf9a 100644 --- a/deploy/docker/cluster-entrypoint.sh +++ b/deploy/docker/cluster-entrypoint.sh @@ -298,7 +298,6 @@ if [ -d "$BUNDLED_MANIFESTS" ]; then # Only clean up files that look like openshell manifests (openshell-* or # envoy-gateway-* or agent-*) to avoid removing built-in k3s manifests. for existing in "$K3S_MANIFESTS"/openshell-*.yaml \ - "$K3S_MANIFESTS"/openshell-*.yaml \ "$K3S_MANIFESTS"/envoy-gateway-*.yaml \ "$K3S_MANIFESTS"/agent-*.yaml; do [ ! -f "$existing" ] && continue From 7d853fad353df3d13b81418730fffff5b41fa8c4 Mon Sep 17 00:00:00 2001 From: yuxshi Date: Wed, 18 Mar 2026 15:49:24 +0900 Subject: [PATCH 2/2] ci: retrigger CI