cloud-init-dev team mailing list archive
-
cloud-init-dev team
-
Mailing list archive
-
Message #02851
[Merge] ~szeestraten/cloud-init:doc-fix-disk-setup-examples into cloud-init:master
Sandor Zeestraten has proposed merging ~szeestraten/cloud-init:doc-fix-disk-setup-examples into cloud-init:master.
Requested reviews:
cloud-init commiters (cloud-init-dev)
Related bugs:
Bug #1703789 in cloud-init: "Disk setup example text only lists MBR as valid table_type"
https://bugs.launchpad.net/cloud-init/+bug/1703789
For more details, see:
https://code.launchpad.net/~szeestraten/cloud-init/+git/cloud-init/+merge/327274
doc: fix disk setup example table_type options
This fixes the disk setup example doc which specifies that the only
currently supported table_type option is 'mbr' by adding the 'gpt'
option which got supported as of 0.7.7.
LP: #1703789
--
Your team cloud-init commiters is requested to review the proposed merge of ~szeestraten/cloud-init:doc-fix-disk-setup-examples into cloud-init:master.
diff --git a/doc/examples/cloud-config-disk-setup.txt b/doc/examples/cloud-config-disk-setup.txt
index 38ad052..dd91477 100644
--- a/doc/examples/cloud-config-disk-setup.txt
+++ b/doc/examples/cloud-config-disk-setup.txt
@@ -98,11 +98,11 @@ disk_setup:
#
# table_type=<TYPE>: Currently the following are supported:
# 'mbr': default and setups a MS-DOS partition table
+# 'gpt': setups a GPT partition table
#
-# Note: At this time only 'mbr' partition tables are allowed.
-# It is anticipated in the future that we'll have GPT as
-# option in the future, or even "RAID" to create a mdadm
-# RAID.
+# Note: At this time only 'mbr' and 'gpt' partition tables
+# are allowed. It is anticipated in the future that
+# we'll also have "RAID" to create a mdadm RAID.
#
# layout={...}: The device layout. This is a list of values, with the
# percentage of disk that partition will take.
Follow ups