diff --git a/ansible/roles/kolla-openstack/molecule/default/molecule.yml b/ansible/roles/kolla-openstack/molecule/default/molecule.yml index 331c131d6..e2529d584 100644 --- a/ansible/roles/kolla-openstack/molecule/default/molecule.yml +++ b/ansible/roles/kolla-openstack/molecule/default/molecule.yml @@ -8,8 +8,8 @@ driver: lint: | yamllint . platforms: - - name: centos-stream8 - image: quay.io/centos/centos:stream8 + - name: centos-stream9 + image: quay.io/centos/centos:stream9 provisioner: name: ansible lint: diff --git a/ansible/roles/kolla-openstack/molecule/enable-everything/molecule.yml b/ansible/roles/kolla-openstack/molecule/enable-everything/molecule.yml index 264ef1cb1..781b8b1d2 100644 --- a/ansible/roles/kolla-openstack/molecule/enable-everything/molecule.yml +++ b/ansible/roles/kolla-openstack/molecule/enable-everything/molecule.yml @@ -8,8 +8,8 @@ driver: lint: | yamllint . platforms: - - name: centos-stream8 - image: quay.io/centos/centos:stream8 + - name: centos-stream9 + image: quay.io/centos/centos:stream9 provisioner: name: ansible inventory: diff --git a/doc/source/administration/seed.rst b/doc/source/administration/seed.rst index d54499cd7..ff8fab510 100644 --- a/doc/source/administration/seed.rst +++ b/doc/source/administration/seed.rst @@ -113,8 +113,7 @@ Backup It should be safe to keep services running during the backup, but for maximum safety they may optionally be stopped:: - docker exec -it bifrost_deploy \ - systemctl stop ironic-api ironic-conductor ironic-inspector + docker exec -it bifrost_deploy systemctl stop ironic ironic-inspector Then, to perform the backup:: @@ -123,8 +122,7 @@ Then, to perform the backup:: If the services were stopped prior to the backup, start them again:: - docker exec -it bifrost_deploy \ - systemctl start ironic-api ironic-conductor ironic-inspector + docker exec -it bifrost_deploy systemctl start ironic ironic-inspector Restore ^^^^^^^ @@ -132,8 +130,7 @@ Restore Prior to restoring the database, the Ironic and Ironic Inspector services should be stopped:: - docker exec -it bifrost_deploy \ - systemctl stop ironic-api ironic-conductor ironic-inspector + docker exec -it bifrost_deploy systemctl stop ironic ironic-inspector The database may then safely be restored:: @@ -142,8 +139,7 @@ The database may then safely be restored:: Finally, start the Ironic and Ironic Inspector services again:: - docker exec -it bifrost_deploy \ - systemctl start ironic-api ironic-conductor ironic-inspector + docker exec -it bifrost_deploy systemctl start ironic ironic-inspector Running Commands ================