From 983c6c0c74f9ed55ea03bc6e481fea9473087f08 Mon Sep 17 00:00:00 2001 From: Pete Birley Date: Wed, 26 Apr 2017 16:10:39 -0500 Subject: [PATCH] Glance: Change default bootstrap image to Cirros The default bootstrap image for glance was Ubuntu 16.04, which was a >200Mb download, and is not sutiable for testing in low memory environments. This moves to the Cirros image which is suited to this sort of usage. Change-Id: I3c22f961c43ee68c24e23eb6b483c165540337bd --- glance/values.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/glance/values.yaml b/glance/values.yaml index ad2692d65b..a47c7c636d 100644 --- a/glance/values.yaml +++ b/glance/values.yaml @@ -48,17 +48,17 @@ upgrades: bootstrap: enabled: true images: - ubuntu_precise64: - name: "Ubuntu Precise 64-bit" - source_url: "http://cloud-images.ubuntu.com/precise/current/" - image_file: "precise-server-cloudimg-amd64-disk1.img" - min_disk: 20 + cirros: + name: "Cirros 0.3.5 64-bit" + source_url: "http://download.cirros-cloud.net/0.3.5/" + image_file: "cirros-0.3.5-x86_64-disk.img" + min_disk: 1 image_type: qcow2 container_format: bare private: true properties: hypervisor_type: "qemu" - os_distro: "ubuntu" + os_distro: "cirros" keystone: admin_user: "admin"