From 67fc56366e44e7cf36eeafce46182ab8a4fa95cb Mon Sep 17 00:00:00 2001 From: Markus Zoeller Date: Mon, 26 Jun 2017 13:38:34 +0200 Subject: [PATCH] Add s390x as supported architecture The s390x architecture (aka IBM z Systems) supports OpenStack since the Kilo release. This change adds the necessary tweaks to let openstack-ansible do its work on that platform. Change-Id: Ib682fb19626156b6545e9e62bd8dd0732d2f1ab1 Co-Authored-By: Chris Beukers --- defaults/main.yml | 1 + releasenotes/notes/ubuntu-s390x-0a561bc69354d48a.yaml | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 releasenotes/notes/ubuntu-s390x-0a561bc69354d48a.yaml diff --git a/defaults/main.yml b/defaults/main.yml index becf6b2f..b3b0065e 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -27,6 +27,7 @@ lxc_hosts_pip_package_state: "latest" lxc_architecture_mapping: x86_64: amd64 ppc64le: ppc64el + s390x: s390x # Set the volume size in gigabytes for the machine image caches. lxc_host_machine_volume_size: 16 diff --git a/releasenotes/notes/ubuntu-s390x-0a561bc69354d48a.yaml b/releasenotes/notes/ubuntu-s390x-0a561bc69354d48a.yaml new file mode 100644 index 00000000..06c0412d --- /dev/null +++ b/releasenotes/notes/ubuntu-s390x-0a561bc69354d48a.yaml @@ -0,0 +1,3 @@ +--- +features: + - Add support for Ubuntu on IBM z Systems (s390x).