From bed61806c86a798f80e70690a6f2533de81cc930 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Tue, 20 Feb 2024 15:39:57 +0100 Subject: [PATCH] pkg/machine/ocipull: add default policy.json file So that this file can be inculded in our windows/macos packages and also by other packagers. Right now the default policy is allow everything but we plan to add signing in the future. Signed-off-by: Paul Holzinger --- pkg/machine/ocipull/policy.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pkg/machine/ocipull/policy.json diff --git a/pkg/machine/ocipull/policy.json b/pkg/machine/ocipull/policy.json new file mode 100644 index 0000000000..bb26e57ff2 --- /dev/null +++ b/pkg/machine/ocipull/policy.json @@ -0,0 +1,7 @@ +{ + "default": [ + { + "type": "insecureAcceptAnything" + } + ] +}