diff --git a/configuration.yaml b/configuration.yaml index ea969255a..69c83b03a 100644 --- a/configuration.yaml +++ b/configuration.yaml @@ -1710,6 +1710,12 @@ searchPaths: - deploy/Chart/crds versionPattern: "^v([0-9]+\\.[0-9]+\\.[0-9]+)$" +- kind: git + name: rancher + repository: https://github.com/rancher/rancher + versionPattern: "^v([0-9]+\\.[0-9]+\\.[0-9]+)$" + searchPaths: + - pkg/crds - kind: git name: rancher-system-upgrade-controller repository: https://github.com/rancher/system-upgrade-controller diff --git a/internal/command/verifier.go b/internal/command/verifier.go index a11bbd1d4..2dc8e5073 100644 --- a/internal/command/verifier.go +++ b/internal/command/verifier.go @@ -10,6 +10,7 @@ import ( "path" "github.com/santhosh-tekuri/jsonschema/v5" + _ "github.com/santhosh-tekuri/jsonschema/v5/httploader" "gopkg.in/yaml.v3" )