This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/libcloud.git
commit 03c99842d57ddec396a9e566860d582bc1c036b2 Author: Christopher Lambert <[email protected]> AuthorDate: Fri Oct 11 14:07:14 2019 +0200 add more new gce image families --- libcloud/compute/drivers/gce.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/libcloud/compute/drivers/gce.py b/libcloud/compute/drivers/gce.py index 889fd88..2c02858 100644 --- a/libcloud/compute/drivers/gce.py +++ b/libcloud/compute/drivers/gce.py @@ -1781,10 +1781,18 @@ class GCENodeDriver(NodeDriver): } IMAGE_PROJECTS = { - "centos-cloud": ["centos-6", "centos-7"], + "centos-cloud": [ + "centos-6", + "centos-7", + "centos-8", + ], "cos-cloud": ["cos-beta", "cos-dev", "cos-stable"], "coreos-cloud": ["coreos-alpha", "coreos-beta", "coreos-stable"], - "debian-cloud": ["debian-8", "debian-9"], + "debian-cloud": [ + "debian-8", + "debian-9", + "debian-10", + ], "opensuse-cloud": ["opensuse-leap"], "rhel-cloud": [ "rhel-6",
