From fef740b8105aab2eeea9924d744a9aa20cf68b0b Mon Sep 17 00:00:00 2001 From: jangrui Date: Tue, 21 Jul 2026 00:22:15 +0800 Subject: [PATCH] =?UTF-8?q?fix(ci):=20=E5=8E=BB=E6=8E=89=20kubeconform=20s?= =?UTF-8?q?chema-location=20=E7=9A=84=E5=86=85=E5=B1=82=E5=8D=95=E5=BC=95?= =?UTF-8?q?=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 单引号被当作字面字符传入,导致 cert-manager Certificate 校验报 "first path segment in URL cannot contain colon"。去掉后本地验证 Errors:1 → 0。 --- .github/workflows/pr-helm-chart.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-helm-chart.yml b/.github/workflows/pr-helm-chart.yml index 5ec348d3..c980d3ec 100644 --- a/.github/workflows/pr-helm-chart.yml +++ b/.github/workflows/pr-helm-chart.yml @@ -179,4 +179,4 @@ jobs: uses: docker://ghcr.io/yannh/kubeconform:latest with: entrypoint: '/kubeconform' - args: "-strict -summary -output text -schema-location default -schema-location 'https://raw.githubusercontent.com/datreeio/CRDs-catalog/main/{{.Group}}/{{.ResourceKind}}_{{.ResourceAPIVersion}}.json' charts/skillhub/rendered.yaml" + args: "-strict -summary -output text -schema-location default -schema-location https://raw.githubusercontent.com/datreeio/CRDs-catalog/main/{{.Group}}/{{.ResourceKind}}_{{.ResourceAPIVersion}}.json charts/skillhub/rendered.yaml"