[lxc-devel] [lxd/master] Add `--expanded` to config get

stgraber on Github lxc-bot at linuxcontainers.org
Mon Apr 27 21:35:45 UTC 2020


A non-text attachment was scrubbed...
Name: not available
Type: text/x-mailbox
Size: 301 bytes
Desc: not available
URL: <http://lists.linuxcontainers.org/pipermail/lxc-devel/attachments/20200427/a089e7c4/attachment-0001.bin>
-------------- next part --------------
From 0f241fea88de08b3a750cbef118c96439a81f196 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Mon, 27 Apr 2020 17:34:44 -0400
Subject: [PATCH 1/2] lxc/config: Add --expanded to get
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Closes #7266

Signed-off-by: Stéphane Graber <stgraber at ubuntu.com>
---
 lxc/config.go | 20 +++++++++++++++++++-
 1 file changed, 19 insertions(+), 1 deletion(-)

diff --git a/lxc/config.go b/lxc/config.go
index 28399a36a4..559a557482 100644
--- a/lxc/config.go
+++ b/lxc/config.go
@@ -349,6 +349,8 @@ func (c *cmdConfigEdit) Run(cmd *cobra.Command, args []string) error {
 type cmdConfigGet struct {
 	global *cmdGlobal
 	config *cmdConfig
+
+	flagExpanded bool
 }
 
 func (c *cmdConfigGet) Command() *cobra.Command {
@@ -358,6 +360,7 @@ func (c *cmdConfigGet) Command() *cobra.Command {
 	cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
 		`Get values for instance or server configuration keys`))
 
+	cmd.Flags().BoolVar(&c.flagExpanded, "expanded", false, i18n.G("Access the expanded configuration"))
 	cmd.Flags().StringVar(&c.config.flagTarget, "target", "", i18n.G("Cluster member name")+"``")
 	cmd.RunE = c.Run
 
@@ -395,8 +398,18 @@ func (c *cmdConfigGet) Run(cmd *cobra.Command, args []string) error {
 		if err != nil {
 			return err
 		}
-		fmt.Println(resp.Config[args[len(args)-1]])
+
+		if c.flagExpanded {
+			fmt.Println(resp.ExpandedConfig[args[len(args)-1]])
+		} else {
+			fmt.Println(resp.Config[args[len(args)-1]])
+		}
 	} else {
+		// Sanity check
+		if c.flagExpanded {
+			return fmt.Errorf(i18n.G("--expanded cannot be used with a server"))
+		}
+
 		// Targeting
 		if c.config.flagTarget != "" {
 			if !resource.server.IsClustered() {
@@ -628,6 +641,11 @@ func (c *cmdConfigShow) Run(cmd *cobra.Command, args []string) error {
 	var data []byte
 
 	if resource.name == "" {
+		// Sanity check
+		if c.flagExpanded {
+			return fmt.Errorf(i18n.G("--expanded cannot be used with a server"))
+		}
+
 		// Targeting
 		if c.config.flagTarget != "" {
 			if !resource.server.IsClustered() {

From 4870bc2f8cdbe9e26353e785c72b91a20469c4b3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Mon, 27 Apr 2020 17:35:17 -0400
Subject: [PATCH 2/2] i18n: Update translation templates
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Stéphane Graber <stgraber at ubuntu.com>
---
 po/bg.po      | 46 ++++++++++++++++++++++++++-------------------
 po/de.po      | 48 ++++++++++++++++++++++++++++-------------------
 po/el.po      | 46 ++++++++++++++++++++++++++-------------------
 po/es.po      | 46 ++++++++++++++++++++++++++-------------------
 po/fa.po      | 46 ++++++++++++++++++++++++++-------------------
 po/fi.po      | 46 ++++++++++++++++++++++++++-------------------
 po/fr.po      | 47 +++++++++++++++++++++++++++-------------------
 po/hi.po      | 46 ++++++++++++++++++++++++++-------------------
 po/id.po      | 46 ++++++++++++++++++++++++++-------------------
 po/it.po      | 46 ++++++++++++++++++++++++++-------------------
 po/ja.po      | 51 ++++++++++++++++++++++++++++----------------------
 po/ko.po      | 46 ++++++++++++++++++++++++++-------------------
 po/lxd.pot    | 42 ++++++++++++++++++++++++-----------------
 po/nb_NO.po   | 46 ++++++++++++++++++++++++++-------------------
 po/nl.po      | 46 ++++++++++++++++++++++++++-------------------
 po/pa.po      | 46 ++++++++++++++++++++++++++-------------------
 po/pl.po      | 46 ++++++++++++++++++++++++++-------------------
 po/pt_BR.po   | 52 ++++++++++++++++++++++++++++-----------------------
 po/ru.po      | 46 ++++++++++++++++++++++++++-------------------
 po/sl.po      | 46 ++++++++++++++++++++++++++-------------------
 po/sr.po      | 46 ++++++++++++++++++++++++++-------------------
 po/sv.po      | 46 ++++++++++++++++++++++++++-------------------
 po/te.po      | 46 ++++++++++++++++++++++++++-------------------
 po/tr.po      | 46 ++++++++++++++++++++++++++-------------------
 po/uk.po      | 46 ++++++++++++++++++++++++++-------------------
 po/zh_Hans.po | 46 ++++++++++++++++++++++++++-------------------
 26 files changed, 707 insertions(+), 499 deletions(-)

diff --git a/po/bg.po b/po/bg.po
index 769537d6d7..8182600ceb 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -214,6 +214,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -222,7 +226,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -247,6 +251,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr ""
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -511,7 +519,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -544,8 +552,8 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -838,8 +846,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1270,7 +1278,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2650,11 +2658,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2776,7 +2784,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2820,7 +2828,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3098,7 +3106,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3191,7 +3199,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3605,7 +3613,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3725,7 +3733,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4105,7 +4113,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4157,7 +4165,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4246,7 +4254,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 
diff --git a/po/de.po b/po/de.po
index 5b6990c41d..ed102cae60 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LXD\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: 2019-12-12 14:53+0000\n"
 "Last-Translator: Stéphane Graber <stgraber at stgraber.org>\n"
 "Language-Team: German <https://hosted.weblate.org/projects/linux-containers/"
@@ -344,6 +344,11 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+#, fuzzy
+msgid "--expanded cannot be used with a server"
+msgstr "--refresh kann nur mit Containern verwendet werden"
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -353,7 +358,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr "--refresh kann nur mit Containern verwendet werden"
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 #, fuzzy
 msgid "--target cannot be used with instances"
@@ -379,6 +384,11 @@ msgstr ""
 msgid "Accept certificate"
 msgstr "Akzeptiere Zertifikat"
 
+#: lxc/config.go:363
+#, fuzzy
+msgid "Access the expanded configuration"
+msgstr "Profil %s erstellt\n"
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr "Aktion (Standard: GET)"
@@ -664,7 +674,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -702,8 +712,8 @@ msgstr "Gespeichertes Nutzerzertifikat auf dem Server: "
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -1021,8 +1031,8 @@ msgstr "Kein Zertifikat für diese Verbindung"
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1484,7 +1494,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 #, fuzzy
 msgid "Get values for instance or server configuration keys"
 msgstr "Profil %s erstellt\n"
@@ -2951,12 +2961,12 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 #, fuzzy
 msgid "Set instance or server configuration keys"
 msgstr "Alternatives config Verzeichnis."
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -3084,7 +3094,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 #, fuzzy
 msgid "Show instance or server configurations"
 msgstr "Profil %s erstellt\n"
@@ -3132,7 +3142,7 @@ msgstr "Profil %s erstellt\n"
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3426,7 +3436,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3521,7 +3531,7 @@ msgstr "nicht alle Profile der Quelle sind am Ziel vorhanden."
 msgid "Unset instance device configuration keys"
 msgstr "Alternatives config Verzeichnis."
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 #, fuzzy
 msgid "Unset instance or server configuration keys"
 msgstr "Alternatives config Verzeichnis."
@@ -4056,7 +4066,7 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 #, fuzzy
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
@@ -4197,7 +4207,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4667,7 +4677,7 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 #, fuzzy
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
@@ -4743,7 +4753,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 #, fuzzy
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
@@ -4867,7 +4877,7 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 #, fuzzy
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
diff --git a/po/el.po b/po/el.po
index 9e3a8ae39f..557073e229 100644
--- a/po/el.po
+++ b/po/el.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: 2017-02-14 08:00+0000\n"
 "Last-Translator: Simos Xenitellis <simos.65 at gmail.com>\n"
 "Language-Team: Greek <https://hosted.weblate.org/projects/linux-containers/"
@@ -217,6 +217,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -225,7 +229,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -250,6 +254,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr ""
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -515,7 +523,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -548,8 +556,8 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -842,8 +850,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1277,7 +1285,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2660,11 +2668,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2786,7 +2794,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2830,7 +2838,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3108,7 +3116,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3201,7 +3209,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3615,7 +3623,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3735,7 +3743,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4115,7 +4123,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4167,7 +4175,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4256,7 +4264,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 
diff --git a/po/es.po b/po/es.po
index 683dc9a4f7..50a6f1a797 100644
--- a/po/es.po
+++ b/po/es.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: 2019-09-06 07:09+0000\n"
 "Last-Translator: Stéphane Graber <stgraber at stgraber.org>\n"
 "Language-Team: Spanish <https://hosted.weblate.org/projects/linux-containers/"
@@ -338,6 +338,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 #, fuzzy
 msgid "--instance-only can't be passed when the source is a snapshot"
@@ -347,7 +351,7 @@ msgstr "--container-only no se puede pasar cuando la fuente es una instantánea"
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -372,6 +376,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr "Acepta certificado"
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr "Accion (predeterminados a GET)"
@@ -640,7 +648,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -674,8 +682,8 @@ msgstr "Certificado del cliente almacenado en el servidor: "
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -977,8 +985,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1414,7 +1422,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2808,11 +2816,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2934,7 +2942,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2978,7 +2986,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3256,7 +3264,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3349,7 +3357,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3775,7 +3783,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 #, fuzzy
 msgid "get [<remote>:][<instance>] <key>"
 msgstr "No se puede proveer el nombre del container a la lista"
@@ -3899,7 +3907,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4288,7 +4296,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 #, fuzzy
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr "No se puede proveer el nombre del container a la lista"
@@ -4344,7 +4352,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 #, fuzzy
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr "No se puede proveer el nombre del container a la lista"
@@ -4439,7 +4447,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 #, fuzzy
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr "No se puede proveer el nombre del container a la lista"
diff --git a/po/fa.po b/po/fa.po
index a1c3b74ced..fd7dbbfe1b 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -214,6 +214,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -222,7 +226,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -247,6 +251,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr ""
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -511,7 +519,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -544,8 +552,8 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -838,8 +846,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1270,7 +1278,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2650,11 +2658,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2776,7 +2784,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2820,7 +2828,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3098,7 +3106,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3191,7 +3199,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3605,7 +3613,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3725,7 +3733,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4105,7 +4113,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4157,7 +4165,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4246,7 +4254,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 
diff --git a/po/fi.po b/po/fi.po
index ba528cc5b7..1fd5f6f13f 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -214,6 +214,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -222,7 +226,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -247,6 +251,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr ""
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -511,7 +519,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -544,8 +552,8 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -838,8 +846,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1270,7 +1278,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2650,11 +2658,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2776,7 +2784,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2820,7 +2828,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3098,7 +3106,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3191,7 +3199,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3605,7 +3613,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3725,7 +3733,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4105,7 +4113,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4157,7 +4165,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4246,7 +4254,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 
diff --git a/po/fr.po b/po/fr.po
index 140d526945..dd6b0c76a7 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LXD\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: 2019-01-04 18:07+0000\n"
 "Last-Translator: Deleted User <noreply+12102 at weblate.org>\n"
 "Language-Team: French <https://hosted.weblate.org/projects/linux-containers/"
@@ -338,6 +338,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -346,7 +350,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -373,6 +377,11 @@ msgstr "TYPE"
 msgid "Accept certificate"
 msgstr "Accepter le certificat"
 
+#: lxc/config.go:363
+#, fuzzy
+msgid "Access the expanded configuration"
+msgstr "Afficher la configuration étendue"
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr "Action (GET par défaut)"
@@ -649,7 +658,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr "impossible de spécifier uid/gid/mode en mode récursif"
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, fuzzy, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -684,8 +693,8 @@ msgstr "Certificat client enregistré sur le serveur : "
 msgid "Client version: %s\n"
 msgstr "Afficher la version du client"
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -1028,8 +1037,8 @@ msgstr "Copie de l'image : %s"
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1492,7 +1501,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 #, fuzzy
 msgid "Get values for instance or server configuration keys"
 msgstr "Clé de configuration invalide"
@@ -3020,12 +3029,12 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 #, fuzzy
 msgid "Set instance or server configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -3154,7 +3163,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr "L'arrêt du conteneur a échoué !"
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 #, fuzzy
 msgid "Show instance or server configurations"
 msgstr "Afficher la configuration étendue"
@@ -3208,7 +3217,7 @@ msgstr "Afficher la configuration étendue"
 msgid "Show the default remote"
 msgstr "impossible de supprimer le serveur distant par défaut"
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr "Afficher la configuration étendue"
 
@@ -3510,7 +3519,7 @@ msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 "Pour démarrer votre premier conteneur, essayer : lxc launch ubuntu:16.04"
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3605,7 +3614,7 @@ msgstr "tous les profils de la source n'existent pas sur la cible"
 msgid "Unset instance device configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 #, fuzzy
 msgid "Unset instance or server configuration keys"
 msgstr "Clé de configuration invalide"
@@ -4169,7 +4178,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 #, fuzzy
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
@@ -4314,7 +4323,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4821,7 +4830,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 #, fuzzy
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
@@ -4909,7 +4918,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 #, fuzzy
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
@@ -5040,7 +5049,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 #, fuzzy
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
diff --git a/po/hi.po b/po/hi.po
index 87add348e3..2107561620 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -214,6 +214,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -222,7 +226,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -247,6 +251,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr ""
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -511,7 +519,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -544,8 +552,8 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -838,8 +846,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1270,7 +1278,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2650,11 +2658,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2776,7 +2784,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2820,7 +2828,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3098,7 +3106,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3191,7 +3199,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3605,7 +3613,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3725,7 +3733,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4105,7 +4113,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4157,7 +4165,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4246,7 +4254,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 
diff --git a/po/id.po b/po/id.po
index eb6a5da03d..ce52cacca0 100644
--- a/po/id.po
+++ b/po/id.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -214,6 +214,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -222,7 +226,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -247,6 +251,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr ""
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -511,7 +519,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -544,8 +552,8 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -838,8 +846,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1270,7 +1278,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2650,11 +2658,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2776,7 +2784,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2820,7 +2828,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3098,7 +3106,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3191,7 +3199,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3605,7 +3613,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3725,7 +3733,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4105,7 +4113,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4157,7 +4165,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4246,7 +4254,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 
diff --git a/po/it.po b/po/it.po
index e2744fdcd8..ccab3151ec 100644
--- a/po/it.po
+++ b/po/it.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: 2019-09-06 07:09+0000\n"
 "Last-Translator: Luigi Operoso <brokenpip3 at gmail.com>\n"
 "Language-Team: Italian <https://hosted.weblate.org/projects/linux-containers/"
@@ -330,6 +330,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -338,7 +342,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -363,6 +367,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr "Accetta certificato"
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr "Azione (default a GET)"
@@ -628,7 +636,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -662,8 +670,8 @@ msgstr "Certificato del client salvato dal server: "
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -965,8 +973,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1403,7 +1411,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2802,11 +2810,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2928,7 +2936,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2972,7 +2980,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3253,7 +3261,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3347,7 +3355,7 @@ msgstr "non tutti i profili dell'origine esistono nella destinazione"
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3775,7 +3783,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 #, fuzzy
 msgid "get [<remote>:][<instance>] <key>"
 msgstr "Creazione del container in corso"
@@ -3899,7 +3907,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4288,7 +4296,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 #, fuzzy
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr "Creazione del container in corso"
@@ -4344,7 +4352,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 #, fuzzy
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr "Creazione del container in corso"
@@ -4439,7 +4447,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 #, fuzzy
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr "Creazione del container in corso"
diff --git a/po/ja.po b/po/ja.po
index 82666ca175..be062df948 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LXD\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: 2020-03-27 12:50+0000\n"
 "Last-Translator: KATOH Yasufumi <karma at jazz.email.ne.jp>\n"
 "Language-Team: Japanese <https://hosted.weblate.org/projects/linux-"
@@ -332,6 +332,11 @@ msgstr "- ポート %d (%s)"
 msgid "--empty cannot be combined with an image name"
 msgstr "--empty はイメージ名と同時に指定できません"
 
+#: lxc/config.go:410 lxc/config.go:646
+#, fuzzy
+msgid "--expanded cannot be used with a server"
+msgstr "--target はコンテナでは使えません"
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr "--instance-only はコピー元がスナップショットの場合は指定できません"
@@ -340,7 +345,7 @@ msgstr "--instance-only はコピー元がスナップショットの場合は
 msgid "--refresh can only be used with instances"
 msgstr "--refresh はインスタンスの場合のみ使えます"
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr "--target はインスタンスでは使えません"
@@ -365,6 +370,11 @@ msgstr "AUTH TYPE"
 msgid "Accept certificate"
 msgstr "証明書を受け入れます"
 
+#: lxc/config.go:363
+#, fuzzy
+msgid "Access the expanded configuration"
+msgstr "拡張した設定を表示する"
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr "使用するHTTPのメソッド (デフォルト: GET)"
@@ -642,7 +652,7 @@ msgstr "クラスタでない場合はカラムとして L は指定できませ
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr "再帰 (recursive) モードでは uid/gid/mode を指定できません"
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr "キー '%s' が設定されていないので削除できません"
@@ -675,8 +685,8 @@ msgstr "クライアント証明書がサーバに格納されました:"
 msgid "Client version: %s\n"
 msgstr "クライアントバージョン: %s\n"
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -981,8 +991,8 @@ msgstr "ストレージボリュームを削除します"
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1457,7 +1467,7 @@ msgstr "ネットワークのランタイム情報を取得します"
 msgid "Get values for instance device configuration keys"
 msgstr "インスタンスのデバイスの設定値を取得します"
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr "インスタンスもしくはサーバの設定値を取得します"
 
@@ -2973,11 +2983,11 @@ msgstr ""
 "後方互換性のため、単一の設定を行う場合は次の形式でも設定できます:\n"
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr "インスタンスもしくはサーバの設定項目を設定します"
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -3123,7 +3133,7 @@ msgstr "イメージのプロパティを表示します"
 msgid "Show instance metadata files"
 msgstr "インスタンスのメタデータファイルを表示します"
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr "インスタンスもしくはサーバの設定を表示します"
 
@@ -3167,7 +3177,7 @@ msgstr "ストレージボリュームの設定を表示する"
 msgid "Show the default remote"
 msgstr "デフォルトのリモートを表示します"
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr "拡張した設定を表示する"
 
@@ -3466,7 +3476,7 @@ msgstr ""
 "初めてインスタンスを起動するには、\"lxc launch ubuntu:18.04\" と実行してみて"
 "ください"
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3561,7 +3571,7 @@ msgstr "移動先のインスタンスのすべてのプロファイルを削除
 msgid "Unset instance device configuration keys"
 msgstr "インスタンスデバイスの設定を削除します"
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr "インスタンスもしくはサーバの設定を削除します"
 
@@ -3989,7 +3999,7 @@ msgstr "get [<remote>:]<profile> <key>"
 msgid "get [<remote>:]<project> <key>"
 msgstr "get [<remote>:]<project> <key>"
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr "get [<remote>:][<instance>] <key>"
 
@@ -4124,7 +4134,7 @@ msgstr ""
 "lxc config edit <instance> < instance.yaml\n"
 "    インスタンスの設定を config.yaml を使って更新します。"
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4615,7 +4625,7 @@ msgstr "set [<remote>:]<profile> <key><value>..."
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr "set [<remote>:]<project> <key>=<value>..."
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr "set [<remote>:][<instance>] <key>=<value>..."
 
@@ -4667,7 +4677,7 @@ msgstr "show [<remote>:]<profile>"
 msgid "show [<remote>:]<project>"
 msgstr "show [<remote>:]<project>"
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr "show [<remote>:][<instance>[/<snapshot>]]"
 
@@ -4756,7 +4766,7 @@ msgstr "unset [<remote>:]<profile> <key>"
 msgid "unset [<remote>:]<project> <key>"
 msgstr "unset [<remote>:]<project> <key>"
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr "unset [<remote>:][<instance>] <key>"
 
@@ -4800,9 +4810,6 @@ msgstr "yes"
 #~ "スナップショットを含めずにコンテナのみをバックアップするかどうか (廃止予"
 #~ "定、instance-only を使ってください)"
 
-#~ msgid "--target cannot be used with containers"
-#~ msgstr "--target はコンテナでは使えません"
-
 #~ msgid "Missing container.name name"
 #~ msgstr "コンテナ名を指定する必要があります"
 
diff --git a/po/ko.po b/po/ko.po
index a75d2b61d3..17f0766952 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -214,6 +214,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -222,7 +226,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -247,6 +251,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr ""
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -511,7 +519,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -544,8 +552,8 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -838,8 +846,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1270,7 +1278,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2650,11 +2658,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2776,7 +2784,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2820,7 +2828,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3098,7 +3106,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3191,7 +3199,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3605,7 +3613,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3725,7 +3733,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4105,7 +4113,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4157,7 +4165,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4246,7 +4254,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 
diff --git a/po/lxd.pot b/po/lxd.pot
index c22726dbc8..b5fc3f50be 100644
--- a/po/lxd.pot
+++ b/po/lxd.pot
@@ -7,7 +7,7 @@
 msgid   ""
 msgstr  "Project-Id-Version: lxd\n"
         "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-        "POT-Creation-Date: 2020-04-24 21:51+0200\n"
+        "POT-Creation-Date: 2020-04-27 17:34-0400\n"
         "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
         "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
         "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -205,6 +205,10 @@ msgstr  ""
 msgid   "--empty cannot be combined with an image name"
 msgstr  ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid   "--expanded cannot be used with a server"
+msgstr  ""
+
 #: lxc/copy.go:151
 msgid   "--instance-only can't be passed when the source is a snapshot"
 msgstr  ""
@@ -213,7 +217,7 @@ msgstr  ""
 msgid   "--refresh can only be used with instances"
 msgstr  ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654 lxc/info.go:423
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672 lxc/info.go:423
 msgid   "--target cannot be used with instances"
 msgstr  ""
 
@@ -237,6 +241,10 @@ msgstr  ""
 msgid   "Accept certificate"
 msgstr  ""
 
+#: lxc/config.go:363
+msgid   "Access the expanded configuration"
+msgstr  ""
+
 #: lxc/query.go:41
 msgid   "Action (defaults to GET)"
 msgstr  ""
@@ -496,7 +504,7 @@ msgstr  ""
 msgid   "Can't supply uid/gid/mode in recursive mode"
 msgstr  ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid   "Can't unset key '%s', it's not currently set"
 msgstr  ""
@@ -529,7 +537,7 @@ msgstr  ""
 msgid   "Client version: %s\n"
 msgstr  ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601 lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54 lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730 lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588 lxc/storage.go:655 lxc/storage.go:738 lxc/storage_volume.go:306 lxc/storage_volume.go:466 lxc/storage_volume.go:543 lxc/storage_volume.go:785 lxc/storage_volume.go:982 lxc/storage_volume.go:1147 lxc/storage_volume.go:1177 lxc/storage_volume.go:1293 lxc/storage_volume.go:1372 lxc/storage_volume.go:1465
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614 lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54 lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730 lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588 lxc/storage.go:655 lxc/storage.go:738 lxc/storage_volume.go:306 lxc/storage_volume.go:466 lxc/storage_volume.go:543 lxc/storage_volume.go:785 lxc/storage_volume.go:982 lxc/storage_volume.go:1147 lxc/storage_volume.go:1177 lxc/storage_volume.go:1293 lxc/storage_volume.go:1372 lxc/storage_volume.go:1465
 msgid   "Cluster member name"
 msgstr  ""
 
@@ -802,7 +810,7 @@ msgstr  ""
 msgid   "Delete storage volumes"
 msgstr  ""
 
-#: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91 lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144 lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153 lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421 lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439 lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261 lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507 lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681 lxc/config_metadata.go:27 lxc/config_metadata.go:52 lxc/config_metadata.go:174 lxc/config_template.go:28 lxc/config_template.go:65 lxc/config_template.go:108 lxc/config_template.go:150 lxc/config_template.go:236 lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57 lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:31 lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:40 lxc/export.go:32 lxc/file.go:72 lxc/file.go:105 lxc/file.go:154 lxc/file.go:217 lxc/file.go:407 lxc/image.go:38 lxc/image.go:129 lxc/image.go:277 lxc/image.go:328 lxc/image.go:453 lxc/image.go:612 lxc/image.go:840 lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25 lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150 lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40 lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19 lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108 lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376 lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727 lxc/network.go:807 lxc/network.go:892 lxc/network.go:961 lxc/network.go:1011 lxc/network.go:1081 lxc/network.go:1143 lxc/operation.go:24 lxc/operation.go:53 lxc/operation.go:102 lxc/operation.go:181 lxc/profile.go:29 lxc/profile.go:101 lxc/profile.go:164 lxc/profile.go:244 lxc/profile.go:300 lxc/profile.go:354 lxc/profile.go:404 lxc/profile.go:528 lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762 lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384 lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619 lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33 lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539 lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:163 lxc/storage.go:213 lxc/storage.go:333 lxc/storage.go:388 lxc/storage.go:508 lxc/storage.go:582 lxc/storage.go:651 lxc/storage.go:735 lxc/storage_volume.go:33 lxc/storage_volume.go:140 lxc/storage_volume.go:219 lxc/storage_volume.go:302 lxc/storage_volume.go:463 lxc/storage_volume.go:540 lxc/storage_volume.go:616 lxc/storage_volume.go:698 lxc/storage_volume.go:779 lxc/storage_volume.go:979 lxc/storage_volume.go:1070 lxc/storage_volume.go:1143 lxc/storage_volume.go:1174 lxc/storage_volume.go:1287 lxc/storage_volume.go:1363 lxc/storage_volume.go:1462 lxc/storage_volume.go:1495 lxc/storage_volume.go:1571 lxc/version.go:22
+#: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91 lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144 lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153 lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421 lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452 lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261 lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507 lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681 lxc/config_metadata.go:27 lxc/config_metadata.go:52 lxc/config_metadata.go:174 lxc/config_template.go:28 lxc/config_template.go:65 lxc/config_template.go:108 lxc/config_template.go:150 lxc/config_template.go:236 lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57 lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:31 lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:40 lxc/export.go:32 lxc/file.go:72 lxc/file.go:105 lxc/file.go:154 lxc/file.go:217 lxc/file.go:407 lxc/image.go:38 lxc/image.go:129 lxc/image.go:277 lxc/image.go:328 lxc/image.go:453 lxc/image.go:612 lxc/image.go:840 lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25 lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150 lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40 lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19 lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108 lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376 lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727 lxc/network.go:807 lxc/network.go:892 lxc/network.go:961 lxc/network.go:1011 lxc/network.go:1081 lxc/network.go:1143 lxc/operation.go:24 lxc/operation.go:53 lxc/operation.go:102 lxc/operation.go:181 lxc/profile.go:29 lxc/profile.go:101 lxc/profile.go:164 lxc/profile.go:244 lxc/profile.go:300 lxc/profile.go:354 lxc/profile.go:404 lxc/profile.go:528 lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762 lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384 lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619 lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33 lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539 lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:163 lxc/storage.go:213 lxc/storage.go:333 lxc/storage.go:388 lxc/storage.go:508 lxc/storage.go:582 lxc/storage.go:651 lxc/storage.go:735 lxc/storage_volume.go:33 lxc/storage_volume.go:140 lxc/storage_volume.go:219 lxc/storage_volume.go:302 lxc/storage_volume.go:463 lxc/storage_volume.go:540 lxc/storage_volume.go:616 lxc/storage_volume.go:698 lxc/storage_volume.go:779 lxc/storage_volume.go:979 lxc/storage_volume.go:1070 lxc/storage_volume.go:1143 lxc/storage_volume.go:1174 lxc/storage_volume.go:1287 lxc/storage_volume.go:1363 lxc/storage_volume.go:1462 lxc/storage_volume.go:1495 lxc/storage_volume.go:1571 lxc/version.go:22
 msgid   "Description"
 msgstr  ""
 
@@ -1170,7 +1178,7 @@ msgstr  ""
 msgid   "Get values for instance device configuration keys"
 msgstr  ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid   "Get values for instance or server configuration keys"
 msgstr  ""
 
@@ -2500,11 +2508,11 @@ msgid   "Set instance device configuration keys\n"
         "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr  ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid   "Set instance or server configuration keys"
 msgstr  ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid   "Set instance or server configuration keys\n"
         "\n"
         "For backward compatibility, a single configuration key may still be set with:\n"
@@ -2614,7 +2622,7 @@ msgstr  ""
 msgid   "Show instance metadata files"
 msgstr  ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid   "Show instance or server configurations"
 msgstr  ""
 
@@ -2658,7 +2666,7 @@ msgstr  ""
 msgid   "Show the default remote"
 msgstr  ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid   "Show the expanded configuration"
 msgstr  ""
 
@@ -2927,7 +2935,7 @@ msgstr  ""
 msgid   "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr  ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634 lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652 lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid   "To use --target, the destination remote must be a cluster"
 msgstr  ""
 
@@ -3018,7 +3026,7 @@ msgstr  ""
 msgid   "Unset instance device configuration keys"
 msgstr  ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid   "Unset instance or server configuration keys"
 msgstr  ""
 
@@ -3420,7 +3428,7 @@ msgstr  ""
 msgid   "get [<remote>:]<project> <key>"
 msgstr  ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid   "get [<remote>:][<instance>] <key>"
 msgstr  ""
 
@@ -3530,7 +3538,7 @@ msgid   "lxc config edit <instance> < instance.yaml\n"
         "    Update the instance configuration from config.yaml."
 msgstr  ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid   "lxc config set [<remote>:]<instance> limits.cpu=2\n"
         "    Will set a CPU limit of \"2\" for the instance.\n"
         "\n"
@@ -3870,7 +3878,7 @@ msgstr  ""
 msgid   "set [<remote>:]<project> <key>=<value>..."
 msgstr  ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid   "set [<remote>:][<instance>] <key>=<value>..."
 msgstr  ""
 
@@ -3922,7 +3930,7 @@ msgstr  ""
 msgid   "show [<remote>:]<project>"
 msgstr  ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid   "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr  ""
 
@@ -4011,7 +4019,7 @@ msgstr  ""
 msgid   "unset [<remote>:]<project> <key>"
 msgstr  ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid   "unset [<remote>:][<instance>] <key>"
 msgstr  ""
 
diff --git a/po/nb_NO.po b/po/nb_NO.po
index 73cdbbe098..fb3f85613c 100644
--- a/po/nb_NO.po
+++ b/po/nb_NO.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -214,6 +214,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -222,7 +226,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -247,6 +251,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr ""
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -511,7 +519,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -544,8 +552,8 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -838,8 +846,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1270,7 +1278,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2650,11 +2658,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2776,7 +2784,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2820,7 +2828,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3098,7 +3106,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3191,7 +3199,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3605,7 +3613,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3725,7 +3733,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4105,7 +4113,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4157,7 +4165,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4246,7 +4254,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 
diff --git a/po/nl.po b/po/nl.po
index 8c6b9a25e3..54fcd5024e 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: 2019-09-06 07:09+0000\n"
 "Last-Translator: Stéphane Graber <stgraber at stgraber.org>\n"
 "Language-Team: Dutch <https://hosted.weblate.org/projects/linux-containers/"
@@ -331,6 +331,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -339,7 +343,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -364,6 +368,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr ""
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -628,7 +636,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -661,8 +669,8 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -955,8 +963,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1387,7 +1395,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2767,11 +2775,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2893,7 +2901,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2937,7 +2945,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3215,7 +3223,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3308,7 +3316,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3722,7 +3730,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3842,7 +3850,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4222,7 +4230,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4274,7 +4282,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4363,7 +4371,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 
diff --git a/po/pa.po b/po/pa.po
index 46ae67e6fc..9bc71414ac 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -214,6 +214,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -222,7 +226,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -247,6 +251,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr ""
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -511,7 +519,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -544,8 +552,8 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -838,8 +846,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1270,7 +1278,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2650,11 +2658,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2776,7 +2784,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2820,7 +2828,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3098,7 +3106,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3191,7 +3199,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3605,7 +3613,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3725,7 +3733,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4105,7 +4113,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4157,7 +4165,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4246,7 +4254,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 
diff --git a/po/pl.po b/po/pl.po
index e419176b0b..224c43031e 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: 2018-09-08 19:22+0000\n"
 "Last-Translator: m4sk1n <me at m4sk.in>\n"
 "Language-Team: Polish <https://hosted.weblate.org/projects/linux-containers/"
@@ -341,6 +341,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -349,7 +353,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -374,6 +378,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr ""
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -638,7 +646,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -671,8 +679,8 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -965,8 +973,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1397,7 +1405,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2777,11 +2785,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2903,7 +2911,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2947,7 +2955,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3225,7 +3233,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3318,7 +3326,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3732,7 +3740,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3852,7 +3860,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4232,7 +4240,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4284,7 +4292,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4373,7 +4381,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 
diff --git a/po/pt_BR.po b/po/pt_BR.po
index be78777308..bf9ef41976 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: 2019-09-06 07:09+0000\n"
 "Last-Translator: Stéphane Graber <stgraber at stgraber.org>\n"
 "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
@@ -341,6 +341,11 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr "--refresh só pode ser usado com containers"
 
+#: lxc/config.go:410 lxc/config.go:646
+#, fuzzy
+msgid "--expanded cannot be used with a server"
+msgstr "--refresh só pode ser usado com containers"
+
 #: lxc/copy.go:151
 #, fuzzy
 msgid "--instance-only can't be passed when the source is a snapshot"
@@ -351,7 +356,7 @@ msgstr "--container-only não pode ser passado quando a fonte é um snapshot"
 msgid "--refresh can only be used with instances"
 msgstr "--refresh só pode ser usado com containers"
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 #, fuzzy
 msgid "--target cannot be used with instances"
@@ -377,6 +382,11 @@ msgstr "TIPO DE AUTENTICAÇÃO"
 msgid "Accept certificate"
 msgstr "Aceitar certificado"
 
+#: lxc/config.go:363
+#, fuzzy
+msgid "Access the expanded configuration"
+msgstr "Editar configurações de perfil como YAML"
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr "Ação (padrão para o GET)"
@@ -649,7 +659,7 @@ msgstr "Não pode especificar a coluna L, quando não em cluster"
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr "Não é possível fornecer o uid/gid/modo no modo recursivo"
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr "Não é possível remover chave '%s', não está atualmente definido"
@@ -683,8 +693,8 @@ msgstr "Certificado do cliente armazenado no servidor: "
 msgid "Client version: %s\n"
 msgstr "Versão do cliente: %s\n"
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -998,8 +1008,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1441,7 +1451,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr "Editar configurações de perfil como YAML"
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 #, fuzzy
 msgid "Get values for instance or server configuration keys"
 msgstr "Editar configurações de perfil como YAML"
@@ -2838,12 +2848,12 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 #, fuzzy
 msgid "Set instance or server configuration keys"
 msgstr "Editar configurações do container ou do servidor como YAML"
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2969,7 +2979,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr "Editar arquivos de metadados do container"
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 #, fuzzy
 msgid "Show instance or server configurations"
 msgstr "Editar configurações do container ou do servidor como YAML"
@@ -3015,7 +3025,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3294,7 +3304,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3389,7 +3399,7 @@ msgstr "Não pode fornecer um nome para a imagem de destino"
 msgid "Unset instance device configuration keys"
 msgstr "Editar configurações de perfil como YAML"
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 #, fuzzy
 msgid "Unset instance or server configuration keys"
 msgstr "Editar configurações do container ou do servidor como YAML"
@@ -3805,7 +3815,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3925,7 +3935,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4305,7 +4315,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4357,7 +4367,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4446,7 +4456,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -4471,10 +4481,6 @@ msgstr ""
 msgid "yes"
 msgstr "sim"
 
-#, fuzzy
-#~ msgid "--target cannot be used with containers"
-#~ msgstr "--refresh só pode ser usado com containers"
-
 #~ msgid "ARCH"
 #~ msgstr "ARQUITETURA"
 
diff --git a/po/ru.po b/po/ru.po
index 4eb84e0f29..494763c081 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: 2018-06-22 15:57+0000\n"
 "Last-Translator: Александр Киль <shorrey at gmail.com>\n"
 "Language-Team: Russian <https://hosted.weblate.org/projects/linux-containers/"
@@ -342,6 +342,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -350,7 +354,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -376,6 +380,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr "Принять сертификат"
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -644,7 +652,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -678,8 +686,8 @@ msgstr "Сертификат клиента хранится на сервере
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -987,8 +995,8 @@ msgstr "Копирование образа: %s"
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1428,7 +1436,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2839,11 +2847,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2967,7 +2975,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -3011,7 +3019,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3293,7 +3301,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3386,7 +3394,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3897,7 +3905,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 #, fuzzy
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
@@ -4037,7 +4045,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4493,7 +4501,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 #, fuzzy
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
@@ -4565,7 +4573,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 #, fuzzy
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
@@ -4686,7 +4694,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 #, fuzzy
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
diff --git a/po/sl.po b/po/sl.po
index c3964fc479..bd78f12eaf 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -214,6 +214,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -222,7 +226,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -247,6 +251,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr ""
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -511,7 +519,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -544,8 +552,8 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -838,8 +846,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1270,7 +1278,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2650,11 +2658,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2776,7 +2784,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2820,7 +2828,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3098,7 +3106,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3191,7 +3199,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3605,7 +3613,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3725,7 +3733,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4105,7 +4113,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4157,7 +4165,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4246,7 +4254,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 
diff --git a/po/sr.po b/po/sr.po
index ae846742c1..a93c3a93b6 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -214,6 +214,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -222,7 +226,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -247,6 +251,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr ""
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -511,7 +519,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -544,8 +552,8 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -838,8 +846,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1270,7 +1278,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2650,11 +2658,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2776,7 +2784,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2820,7 +2828,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3098,7 +3106,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3191,7 +3199,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3605,7 +3613,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3725,7 +3733,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4105,7 +4113,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4157,7 +4165,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4246,7 +4254,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 
diff --git a/po/sv.po b/po/sv.po
index 1b589ba84f..a07140731a 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -214,6 +214,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -222,7 +226,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -247,6 +251,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr ""
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -511,7 +519,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -544,8 +552,8 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -838,8 +846,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1270,7 +1278,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2650,11 +2658,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2776,7 +2784,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2820,7 +2828,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3098,7 +3106,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3191,7 +3199,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3605,7 +3613,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3725,7 +3733,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4105,7 +4113,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4157,7 +4165,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4246,7 +4254,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 
diff --git a/po/te.po b/po/te.po
index ea6acc5a67..b81a114c2b 100644
--- a/po/te.po
+++ b/po/te.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -214,6 +214,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -222,7 +226,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -247,6 +251,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr ""
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -511,7 +519,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -544,8 +552,8 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -838,8 +846,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1270,7 +1278,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2650,11 +2658,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2776,7 +2784,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2820,7 +2828,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3098,7 +3106,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3191,7 +3199,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3605,7 +3613,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3725,7 +3733,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4105,7 +4113,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4157,7 +4165,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4246,7 +4254,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 
diff --git a/po/tr.po b/po/tr.po
index ed5321753d..1217a2139b 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -214,6 +214,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -222,7 +226,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -247,6 +251,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr ""
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -511,7 +519,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -544,8 +552,8 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -838,8 +846,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1270,7 +1278,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2650,11 +2658,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2776,7 +2784,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2820,7 +2828,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3098,7 +3106,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3191,7 +3199,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3605,7 +3613,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3725,7 +3733,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4105,7 +4113,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4157,7 +4165,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4246,7 +4254,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 
diff --git a/po/uk.po b/po/uk.po
index 43ae441ad8..262122ae78 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -214,6 +214,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -222,7 +226,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -247,6 +251,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr ""
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -511,7 +519,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -544,8 +552,8 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -838,8 +846,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1270,7 +1278,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2650,11 +2658,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2776,7 +2784,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2820,7 +2828,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3098,7 +3106,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3191,7 +3199,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3605,7 +3613,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3725,7 +3733,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4105,7 +4113,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4157,7 +4165,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4246,7 +4254,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 
diff --git a/po/zh_Hans.po b/po/zh_Hans.po
index 8fc79c5b14..f53edd0578 100644
--- a/po/zh_Hans.po
+++ b/po/zh_Hans.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-24 21:51+0200\n"
+"POT-Creation-Date: 2020-04-27 17:34-0400\n"
 "PO-Revision-Date: 2018-09-11 19:15+0000\n"
 "Last-Translator: 0x0916 <w at laoqinren.net>\n"
 "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
@@ -217,6 +217,10 @@ msgstr ""
 msgid "--empty cannot be combined with an image name"
 msgstr ""
 
+#: lxc/config.go:410 lxc/config.go:646
+msgid "--expanded cannot be used with a server"
+msgstr ""
+
 #: lxc/copy.go:151
 msgid "--instance-only can't be passed when the source is a snapshot"
 msgstr ""
@@ -225,7 +229,7 @@ msgstr ""
 msgid "--refresh can only be used with instances"
 msgstr ""
 
-#: lxc/config.go:149 lxc/config.go:391 lxc/config.go:516 lxc/config.go:654
+#: lxc/config.go:149 lxc/config.go:394 lxc/config.go:529 lxc/config.go:672
 #: lxc/info.go:423
 msgid "--target cannot be used with instances"
 msgstr ""
@@ -250,6 +254,10 @@ msgstr ""
 msgid "Accept certificate"
 msgstr ""
 
+#: lxc/config.go:363
+msgid "Access the expanded configuration"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Action (defaults to GET)"
 msgstr ""
@@ -514,7 +522,7 @@ msgstr ""
 msgid "Can't supply uid/gid/mode in recursive mode"
 msgstr ""
 
-#: lxc/config.go:533
+#: lxc/config.go:546
 #, c-format
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
@@ -547,8 +555,8 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/config.go:95 lxc/config.go:361 lxc/config.go:454 lxc/config.go:601
-#: lxc/config.go:719 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
+#: lxc/config.go:95 lxc/config.go:364 lxc/config.go:467 lxc/config.go:614
+#: lxc/config.go:737 lxc/copy.go:52 lxc/info.go:45 lxc/init.go:54
 #: lxc/move.go:57 lxc/network.go:257 lxc/network.go:672 lxc/network.go:730
 #: lxc/network.go:1017 lxc/network.go:1084 lxc/network.go:1146
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:588
@@ -841,8 +849,8 @@ msgstr ""
 #: lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144
 #: lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153
 #: lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421
-#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:358 lxc/config.go:439
-#: lxc/config.go:597 lxc/config.go:716 lxc/config_device.go:24
+#: lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452
+#: lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24
 #: lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261
 #: lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507
 #: lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681
@@ -1273,7 +1281,7 @@ msgstr ""
 msgid "Get values for instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:357 lxc/config.go:358
+#: lxc/config.go:359 lxc/config.go:360
 msgid "Get values for instance or server configuration keys"
 msgstr ""
 
@@ -2653,11 +2661,11 @@ msgid ""
 "    lxc profile device set [<remote>:]<profile> <device> <key> <value>"
 msgstr ""
 
-#: lxc/config.go:438
+#: lxc/config.go:451
 msgid "Set instance or server configuration keys"
 msgstr ""
 
-#: lxc/config.go:439
+#: lxc/config.go:452
 msgid ""
 "Set instance or server configuration keys\n"
 "\n"
@@ -2779,7 +2787,7 @@ msgstr ""
 msgid "Show instance metadata files"
 msgstr ""
 
-#: lxc/config.go:596 lxc/config.go:597
+#: lxc/config.go:609 lxc/config.go:610
 msgid "Show instance or server configurations"
 msgstr ""
 
@@ -2823,7 +2831,7 @@ msgstr ""
 msgid "Show the default remote"
 msgstr ""
 
-#: lxc/config.go:600
+#: lxc/config.go:613
 msgid "Show the expanded configuration"
 msgstr ""
 
@@ -3101,7 +3109,7 @@ msgstr ""
 msgid "To start your first instance, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/config.go:278 lxc/config.go:403 lxc/config.go:553 lxc/config.go:634
+#: lxc/config.go:278 lxc/config.go:416 lxc/config.go:566 lxc/config.go:652
 #: lxc/copy.go:114 lxc/info.go:309 lxc/network.go:759 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
@@ -3194,7 +3202,7 @@ msgstr ""
 msgid "Unset instance device configuration keys"
 msgstr ""
 
-#: lxc/config.go:715 lxc/config.go:716
+#: lxc/config.go:733 lxc/config.go:734
 msgid "Unset instance or server configuration keys"
 msgstr ""
 
@@ -3608,7 +3616,7 @@ msgstr ""
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:356
+#: lxc/config.go:358
 msgid "get [<remote>:][<instance>] <key>"
 msgstr ""
 
@@ -3728,7 +3736,7 @@ msgid ""
 "    Update the instance configuration from config.yaml."
 msgstr ""
 
-#: lxc/config.go:444
+#: lxc/config.go:457
 msgid ""
 "lxc config set [<remote>:]<instance> limits.cpu=2\n"
 "    Will set a CPU limit of \"2\" for the instance.\n"
@@ -4108,7 +4116,7 @@ msgstr ""
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
-#: lxc/config.go:437
+#: lxc/config.go:450
 msgid "set [<remote>:][<instance>] <key>=<value>..."
 msgstr ""
 
@@ -4160,7 +4168,7 @@ msgstr ""
 msgid "show [<remote>:]<project>"
 msgstr ""
 
-#: lxc/config.go:595
+#: lxc/config.go:608
 msgid "show [<remote>:][<instance>[/<snapshot>]]"
 msgstr ""
 
@@ -4249,7 +4257,7 @@ msgstr ""
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
-#: lxc/config.go:714
+#: lxc/config.go:732
 msgid "unset [<remote>:][<instance>] <key>"
 msgstr ""
 


More information about the lxc-devel mailing list