Skip to content

Commit

Permalink
Prepare for 6.0.0a (pt. 1) (#1725)
Browse files Browse the repository at this point in the history
Not many changes in Ceph. In order to see errors in the Kolla more quickly,
the basic infra services are deployed before.

Signed-off-by: Christian Berendt <[email protected]>
  • Loading branch information
berendt authored Sep 4, 2023
1 parent ede1f7b commit bc7cb87
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions .zuul.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -183,3 +183,4 @@
- ansible-lint
- yamllint
- flake8

2 changes: 1 addition & 1 deletion playbooks/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

version_ceph: "{{ ceph_version | default('quincy') }}"
version_manager: "{{ manager_version | default('latest') }}"
version_openstack: "{{ openstack_version | default('zed') }}"
version_openstack: "{{ openstack_version | default('2023.1') }}"

run_bootstrap: true
run_checks: true
Expand Down
4 changes: 2 additions & 2 deletions playbooks/upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
vars:
version_ceph: "{{ ceph_version | default('pacific') }}"
version_manager: "{{ manager_version | default('latest') }}"
version_openstack: "{{ openstack_version | default('yoga') }}"
version_openstack: "{{ openstack_version | default('zed') }}"
namespace_kolla: "{{ docker_namespace_kolla | default('kolla') }}"

run_bootstrap: false
Expand All @@ -20,7 +20,7 @@

version_ceph_next: "{{ ceph_version_next | default('quincy') }}"
version_manager_next: "{{ manager_version_next | default('latest') }}"
version_openstack_next: "{{ openstack_version_next | default('zed') }}"
version_openstack_next: "{{ openstack_version_next | default('2023.1') }}"
namespace_kolla_next: "{{ docker_namespace_kolla_next | default('kolla') }}"

run_bootstrap: true
Expand Down
3 changes: 2 additions & 1 deletion scripts/deploy-services.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ sh -c '/opt/configuration/scripts/000-pull-images.sh'
# deploy helper services
sh -c '/opt/configuration/scripts/deploy/001-helper-services.sh'

sh -c '/opt/configuration/scripts/deploy/200-infrastructure-services-basic.sh'

sh -c '/opt/configuration/scripts/deploy/100-ceph-services-basic.sh'

sh -c '/opt/configuration/scripts/deploy/200-infrastructure-services-basic.sh'
sh -c '/opt/configuration/scripts/deploy/300-openstack-services-basic.sh'

if [[ "$REFSTACK" == "false" ]]; then
Expand Down
6 changes: 3 additions & 3 deletions scripts/upgrade-services.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ set -e
# pull images
sh -c '/opt/configuration/scripts/000-pull-images.sh'

# upgrade ceph services
sh -c '/opt/configuration/scripts/upgrade/100-ceph-services.sh'

# upgrade infrastructure services
sh -c '/opt/configuration/scripts/upgrade/200-infrastructure-services-basic.sh'

# upgrade ceph services
sh -c '/opt/configuration/scripts/upgrade/100-ceph-services.sh'

# upgrade openstack services
sh -c '/opt/configuration/scripts/upgrade/300-openstack-services-basic.sh'
sh -c '/opt/configuration/scripts/upgrade/310-openstack-services-extended.sh'
Expand Down

0 comments on commit bc7cb87

Please sign in to comment.