Merge "Move bionic jobs to voting, add release note."
This commit is contained in:
commit
802a3224ec
@ -27,6 +27,7 @@ Install one of the following supported operating systems on the deployment
|
|||||||
hosts:
|
hosts:
|
||||||
|
|
||||||
* `Ubuntu server 16.04 (Xenial Xerus) LTS 64-bit <http://releases.ubuntu.com/16.04/>`_
|
* `Ubuntu server 16.04 (Xenial Xerus) LTS 64-bit <http://releases.ubuntu.com/16.04/>`_
|
||||||
|
* `Ubuntu server 18.04 (Bionic Beaver) LTS 64-bit <http://releases.ubuntu.com/18.04/>`_
|
||||||
* `Centos 7 64-bit <https://www.centos.org/download/>`_
|
* `Centos 7 64-bit <https://www.centos.org/download/>`_
|
||||||
* `openSUSE 42.X 64-bit <https://software.opensuse.org/distributions/leap>`_
|
* `openSUSE 42.X 64-bit <https://software.opensuse.org/distributions/leap>`_
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ following minimum requirements:
|
|||||||
|
|
||||||
* Ubuntu
|
* Ubuntu
|
||||||
|
|
||||||
* Ubuntu 16.04 LTS (Xenial Xerus)
|
* Ubuntu 16.04 LTS (Xenial Xerus) or Ubuntu 18.04 LTS (Bionic Beaver)
|
||||||
|
|
||||||
* Linux kernel version ``3.13.0-34-generic`` or later is required.
|
* Linux kernel version ``3.13.0-34-generic`` or later is required.
|
||||||
|
|
||||||
|
@ -12,6 +12,7 @@ Install one of the following supported operating systems on the
|
|||||||
target host:
|
target host:
|
||||||
|
|
||||||
* Ubuntu server 16.04 (Xenial Xerus) LTS 64-bit
|
* Ubuntu server 16.04 (Xenial Xerus) LTS 64-bit
|
||||||
|
* Ubuntu server 18.04 (Bionic Beaver) LTS 64-bit
|
||||||
* Centos 7 64-bit
|
* Centos 7 64-bit
|
||||||
* openSUSE 42.X 64-bit
|
* openSUSE 42.X 64-bit
|
||||||
|
|
||||||
|
@ -109,7 +109,8 @@ version.
|
|||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
The |current_release_formal_name| release is only compatible with Ubuntu
|
The |current_release_formal_name| release is only compatible with Ubuntu
|
||||||
16.04 (Xenial Xerus), Centos 7 and openSUSE Leap 42.X.
|
16.04 (Xenial Xerus), Ubuntu 18.04 (Bionic Beaver) Centos 7 and
|
||||||
|
openSUSE Leap 42.X.
|
||||||
|
|
||||||
By default the scripts deploy all OpenStack services with sensible defaults
|
By default the scripts deploy all OpenStack services with sensible defaults
|
||||||
for the purpose of a gate check, development or testing system.
|
for the purpose of a gate check, development or testing system.
|
||||||
|
@ -63,11 +63,16 @@ Many software packages are installed on Ubuntu hosts using `.deb` packages.
|
|||||||
Similar packaging mechanisms exist for other Linux distributions. We advise
|
Similar packaging mechanisms exist for other Linux distributions. We advise
|
||||||
mirroring the repositories that host these packages.
|
mirroring the repositories that host these packages.
|
||||||
|
|
||||||
Upstream Ubuntu repositories to mirror:
|
Upstream Ubuntu repositories to mirror for Ubuntu 16.04 LTS:
|
||||||
|
|
||||||
- xenial
|
- xenial
|
||||||
- xenial-updates
|
- xenial-updates
|
||||||
|
|
||||||
|
Upstream Ubuntu repositories to mirror for Ubuntu 18.04 LTS:
|
||||||
|
|
||||||
|
- bionic
|
||||||
|
- bionic-updates
|
||||||
|
|
||||||
OpenStack-Ansible requires several other repositories to install specific
|
OpenStack-Ansible requires several other repositories to install specific
|
||||||
components such as Galera and Ceph.
|
components such as Galera and Ceph.
|
||||||
|
|
||||||
|
13
releasenotes/notes/add-bionic-support-999217a9f7f213cc.yaml
Normal file
13
releasenotes/notes/add-bionic-support-999217a9f7f213cc.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
features:
|
||||||
|
- Support has been added for deploying on Ubuntu 18.04 LTS hosts.
|
||||||
|
The most significant change is a major version increment of LXC
|
||||||
|
from 2.x to 3.x which deprecates some previously used elements
|
||||||
|
of the container configuration file.
|
||||||
|
upgrade:
|
||||||
|
- The supported upgrade path from Xenial to Bionic is via
|
||||||
|
re-installation of the host OS across all nodes and redeployment
|
||||||
|
of the required services. The Rocky branch of OSA is intended
|
||||||
|
as the transition point for such upgrades from Xenial to Bionic.
|
||||||
|
At this time there is no support for in-place operating system
|
||||||
|
upgrades (typically via ``do-release-upgrade``).
|
@ -43,14 +43,13 @@
|
|||||||
jobs:
|
jobs:
|
||||||
# - openstack-ansible-deploy-aio_lxc-centos-7
|
# - openstack-ansible-deploy-aio_lxc-centos-7
|
||||||
# - openstack-ansible-deploy-aio_lxc-opensuse-423
|
# - openstack-ansible-deploy-aio_lxc-opensuse-423
|
||||||
- openstack-ansible-deploy-aio_lxc-ubuntu-bionic:
|
- openstack-ansible-deploy-aio_lxc-ubuntu-bionic
|
||||||
voting: false
|
|
||||||
- openstack-ansible-deploy-aio_lxc-ubuntu-xenial
|
- openstack-ansible-deploy-aio_lxc-ubuntu-xenial
|
||||||
gate:
|
gate:
|
||||||
jobs:
|
jobs:
|
||||||
# - openstack-ansible-deploy-aio_lxc-centos-7
|
# - openstack-ansible-deploy-aio_lxc-centos-7
|
||||||
# - openstack-ansible-deploy-aio_lxc-opensuse-423
|
# - openstack-ansible-deploy-aio_lxc-opensuse-423
|
||||||
# - openstack-ansible-deploy-aio_lxc-ubuntu-bionic
|
- openstack-ansible-deploy-aio_lxc-ubuntu-bionic
|
||||||
- openstack-ansible-deploy-aio_lxc-ubuntu-xenial
|
- openstack-ansible-deploy-aio_lxc-ubuntu-xenial
|
||||||
periodic:
|
periodic:
|
||||||
jobs:
|
jobs:
|
||||||
|
Loading…
Reference in New Issue
Block a user