Charms upgrade

The Juju command to use is upgrade-charm. For extra guidance see How to upgrade applications in the Juju documentation.

Please read the following before continuing:

Note

A charm upgrade affects all corresponding units; upgrading on a per-unit basis is not currently supported.

Upgrade order

There is no special order in which to upgrade the charms. The order described here is based on the upgrade order for OpenStack upgrades, which, in turn, is the order used by internal testing.

Caution

Although it may be possible to upgrade some charms concurrently (i.e. in parallel), it is not recommended. Charm upgrades should be performed sequentially (i.e. one at a time). Also, verify that a charm upgrade has succeeded before moving on to the next.

The general order is:

  1. all principal charms

  2. all subordinate charms

The precise order within the group of principal charms is shown in the below table.

Note

Only stable charms are listed in the upgrade order table.

Principal charms

Order

Charm

1

percona-cluster or mysql-innodb-cluster

2

rabbitmq-server

3

ceph-mon

4

keystone

5

aodh

6

barbican

7

ceilometer

8

ceph-fs

9

ceph-radosgw

10

cinder

11

designate

12

designate-bind

13

glance

14

gnocchi

15

heat

16

manila

17

manila-ganesha

18

neutron-api

19

neutron-gateway or ovn-dedicated-chassis

20

ovn-central

21

placement

22

nova-cloud-controller

23

nova-compute

24

openstack-dashboard

25

ceph-osd

26

swift-proxy

27

swift-storage

28

octavia

Upgrade testing for subordinate charms does not follow a prescribed order. Once all the principal charms have been processed all the subordinate charms can then be upgraded in any order.

Perform the upgrade

Prior to upgrading a charm, say keystone, a (partial) output to juju status may look like:

App       Version  Status   Scale  Charm     Store       Rev  OS      Notes
keystone  15.0.0   active       1  keystone  jujucharms  306  ubuntu

Unit             Workload  Agent  Machine  Public address  Ports      Message
keystone/0*      active    idle   3/lxd/1  10.248.64.69    5000/tcp   Unit is ready

Here, as deduced from the Keystone service version of ‘15.0.0’, the cloud is running Stein. The ‘keystone’ charm however shows a revision number of ‘306’. Upon charm upgrade, the service version will remain unchanged but the charm revision is expected to increase in number.

So to upgrade the keystone charm:

juju upgrade-charm keystone

The upgrade progress can be monitored via juju status. Any encountered problem will surface as a message in its output. This sample (partial) output reflects a successful upgrade:

App       Version  Status   Scale  Charm     Store       Rev  OS      Notes
keystone  15.0.0   active       1  keystone  jujucharms  309  ubuntu

Unit             Workload  Agent  Machine  Public address  Ports      Message
keystone/0*      active    idle   3/lxd/1  10.248.64.69    5000/tcp   Unit is ready

This shows that the charm now has a revision number of ‘309’ but Keystone itself remains at ‘15.0.0’.

Caution

Any software changes that may have (exceptionally) been made to a charm currently running on a unit will be overwritten by the target charm during the upgrade.

Upgrade target revisions

By default the upgrade-charm command will upgrade a charm to its latest stable revision (a possible multi-step upgrade). This means that intervening revisions can be conveniently skipped. Use the --revision option to specify a target revision.

The current revision can be discovered via juju status output (see column ‘Rev’). For the ceph-mon charm:

App       Version  Status  Scale  Charm     Store       Rev  OS      Notes
ceph-mon  13.2.8   active      3  ceph-mon  jujucharms   48  ubuntu

Important

As stated earlier, any kind of upgrade should first be tested in a pre-production environment. OpenStack charm upgrades have been tested for single-step upgrades only (N+1).