Skip to content

Commit 7c21b46

Browse files
committed
CI: Add Docker and SELinux variables for SOT
Depends-On: stackhpc/stackhpc-cloud-tests#4
1 parent c92795e commit 7c21b46

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

etc/kayobe/ansible/stackhpc-openstack-tests.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@
6565
--timeout {{ sot_timeout }}
6666
-vv
6767
environment:
68+
DOCKER_VERSION_MIN: "{{ sot_docker_version_min }}"
69+
DOCKER_VERSION_MAX: "{{ sot_docker_version_max }}"
6870
GRAFANA_URL: "{{ sot_grafana_url }}"
6971
GRAFANA_USERNAME: "{{ sot_grafana_username }}"
7072
GRAFANA_PASSWORD: "{{ sot_grafana_password }}"
@@ -77,9 +79,14 @@
7779
PROMETHEUS_URL: "{{ sot_prometheus_url }}"
7880
PROMETHEUS_USERNAME: "{{ sot_prometheus_username }}"
7981
PROMETHEUS_PASSWORD: "{{ sot_prometheus_password }}"
82+
SELINUX_STATE: "{{ sot_selinux_state }}"
8083
vars:
8184
kolla_external_scheme: "{{ 'https' if kolla_enable_tls_external | bool else 'http' }}"
8285
kolla_internal_scheme: "{{ 'https' if kolla_enable_tls_internal | bool else 'http' }}"
86+
# Inclusive min
87+
sot_docker_version_min: "24.0.0"
88+
# Exclusive max
89+
sot_docker_version_max: "27.0.0"
8390
sot_grafana_url: "{{ kolla_external_scheme }}://{{ kolla_external_fqdn }}:3000"
8491
sot_grafana_username: "grafana_local_admin"
8592
sot_grafana_password: "{{ kolla_passwords.grafana_admin_password }}"
@@ -92,6 +99,7 @@
9299
sot_prometheus_url: "{{ kolla_internal_scheme }}://{{ kolla_internal_fqdn }}:9091"
93100
sot_prometheus_username: "admin"
94101
sot_prometheus_password: "{{ kolla_passwords.prometheus_password }}"
102+
sot_selinux_state: "{{ selinux_state }}"
95103
always:
96104
- name: Fetch results
97105
ansible.builtin.fetch:

0 commit comments

Comments
 (0)