Skip to content

Commit 114f28d

Browse files
committed
fix tests, disable zswap
1 parent ff45c8a commit 114f28d

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

tests/playbooks/roles/install-devstack/tasks/main.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
- python3-pip
4949
- build-essential
5050
- python3-dev
51+
- python3-venv
5152
- python3-setuptools
5253
- libffi-dev
5354
- libxslt1-dev
@@ -58,6 +59,27 @@
5859
- unzip
5960
- jq
6061
- net-tools
62+
- ca-certificates
63+
- python3-openstackclient
64+
- python3-cinderclient
65+
- python3-glanceclient
66+
- python3-keystoneclient
67+
- python3-neutronclient
68+
- python3-novaclient
69+
- python3-swiftclient
70+
- python3-heatclient
71+
- python3-octaviaclient
72+
- python3-manilaclient
73+
- python3-barbicanclient
74+
75+
- name: Verify OpenStack CLI installation
76+
ansible.builtin.command: openstack --version
77+
register: openstack_version
78+
changed_when: false
79+
80+
- name: Display OpenStack CLI version
81+
ansible.builtin.debug:
82+
msg: "OpenStack CLI installed successfully: {{ openstack_version.stdout }}"
6183

6284
- name: Git checkout devstack
6385
git:

tests/playbooks/roles/install-devstack/templates/local.conf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ ENABLE_SYSCTL_NET_TUNING=true
3939
# increase in swap performance by reducing the amount of data
4040
# written to disk. the overall speedup is porportional to the
4141
# compression ratio and the speed of the swap device.
42-
ENABLE_ZSWAP=true
42+
ENABLE_ZSWAP=false
4343

4444
{% if "nova" in enable_services %}
4545
# Nova

0 commit comments

Comments
 (0)