Skip to content

Commit 150760c

Browse files
authored
Merge pull request #472 from stackhpc/upstream/master-2025-09-29
Synchronise master with upstream
2 parents ac66313 + 8f462c7 commit 150760c

27 files changed

+452
-348
lines changed

.ansible-lint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
exclude_paths:
33
- .cache/ # implicit unless exclude_paths is defined in config
4-
- .zuul.d/
4+
- zuul.d/
55
offline: true
66
parseable: true
77
profile: basic

.zuul.d/centos.yaml

Lines changed: 0 additions & 36 deletions
This file was deleted.

.zuul.d/debian.yaml

Lines changed: 0 additions & 82 deletions
This file was deleted.

.zuul.d/project.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.zuul.d/tox.yaml

Lines changed: 0 additions & 12 deletions
This file was deleted.

.zuul.d/ubuntu.yaml

Lines changed: 0 additions & 103 deletions
This file was deleted.

docker/horizon/extend_start.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,10 @@ if [[ ! -d "/var/log/kolla/horizon" ]]; then
252252
mkdir -p /var/log/kolla/horizon
253253
fi
254254

255+
if [[ $(stat -c %U:%G /var/log/kolla/horizon) != "horizon:kolla" ]]; then
256+
chown -R horizon:kolla /var/log/kolla/horizon
257+
fi
258+
255259
if [[ $(stat -c %a /var/log/kolla/horizon) != "755" ]]; then
256260
chmod 755 /var/log/kolla/horizon
257261
fi

docker/openstack-base/Dockerfile.j2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
2727
'pcre2-devel',
2828
'postgresql',
2929
'postgresql-devel',
30+
'postgresql-server-devel',
3031
'python3-devel',
3132
'python3-mod_wsgi',
3233
'sqlite-devel',

kolla/common/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
'rocky': 'Rocky Linux 9.* (Blue Onyx)',
3838
'ubuntu': 'Ubuntu 24.04.* LTS',
3939
}
40-
OPENSTACK_RELEASE = 'master'
40+
OPENSTACK_RELEASE = '2025.2'
4141

4242
# TODO(mandre) check for file integrity instead of downloading from an HTTPS
4343
# source

zuul.d/base.yaml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
- job:
3+
name: kolla-base
4+
parent: base
5+
timeout: 10800
6+
post-timeout: 10800
7+
pre-run: tests/playbooks/pre.yml
8+
run: tests/playbooks/run.yml
9+
post-run: tests/playbooks/post.yml
10+
attempts: 5
11+
roles:
12+
- zuul: openstack/ansible-collection-kolla
13+
irrelevant-files:
14+
- ^.*\.rst$
15+
- ^doc/.*
16+
- ^etc/.*
17+
- ^releasenotes/.*$
18+
- ^specs/.*$
19+
- ^test-requirements.txt$
20+
- ^\.zuul\.d/
21+
- ^\..+
22+
- ^contrib/
23+
- ^LICENSE$
24+
- ^tox\.ini$
25+
vars:
26+
base_arch: "x86_64"
27+
publisher: false
28+
container_engine: "docker"
29+
extra-vars:
30+
kolla_logs_dir: "{{ zuul_output_dir }}/logs/kolla"
31+
kolla_build_logs_dir: "{{ kolla_logs_dir }}/build"
32+
virtualenv_path: "/tmp/kolla-virtualenv"
33+
kolla_build_template_overrides_path: "{{ zuul.executor.work_root }}/\
34+
{{ zuul.projects['opendev.org/openstack/kolla'].src_dir }}\
35+
/tests/templates/template_overrides.j2"
36+
37+
- job:
38+
name: kolla-base-podman
39+
parent: kolla-base
40+
vars:
41+
container_engine: "podman"
42+
configure_ephemeral_mountpoint: "/var/lib/containers"
43+
44+
- job:
45+
name: kolla-build-no-infra-wheels-base
46+
parent: kolla-base
47+
vars:
48+
use_infra_wheels_mirror: false

0 commit comments

Comments
 (0)