The following pull request was submitted through Github. It can be accessed and reviewed at: https://github.com/lxc/lxd/pull/7970
This e-mail was sent by the LXC bot, direct replies will not reach the author unless they happen to be subscribed to this list. === Description (from pull-request) === Signed-off-by: Stéphane Graber <stgra...@ubuntu.com>
From 426a43f47025b9205ec36c1bf3931d09d40a681f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgra...@ubuntu.com> Date: Thu, 1 Oct 2020 15:23:29 -0400 Subject: [PATCH] lxd/project: Always allow cloud-init:config drives MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber <stgra...@ubuntu.com> --- lxd/project/permissions.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lxd/project/permissions.go b/lxd/project/permissions.go index e635490b05..3950396bb6 100644 --- a/lxd/project/permissions.go +++ b/lxd/project/permissions.go @@ -403,6 +403,11 @@ func checkRestrictions(project *api.Project, instances []db.Instance, profiles [ return nil } + // Always allow the cloud-init config drive. + if device["path"] == "" && device["source"] == "cloud-init:config" { + return nil + } + switch restrictionValue { case "block": return fmt.Errorf("Disk devices are forbidden")
_______________________________________________ lxc-devel mailing list lxc-devel@lists.linuxcontainers.org http://lists.linuxcontainers.org/listinfo/lxc-devel