File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed
tests/playbooks/roles/install-devstack Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 4848 - python3-pip
4949 - build-essential
5050 - python3-dev
51+ - python3-venv
5152 - python3-setuptools
5253 - libffi-dev
5354 - libxslt1-dev
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 :
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments