Skip to content

Commit 49d6602

Browse files
authored
Merge pull request #524 from stackhpc/upstream/master-2026-02-05
Synchronise master with upstream
2 parents 4e949a3 + 6142c9f commit 49d6602

File tree

5 files changed

+14
-2
lines changed

5 files changed

+14
-2
lines changed

kayobe/tests/unit/plugins/action/test_kolla_ansible_host_vars.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ class FakeTemplar(object):
5050

5151
def __init__(self, variables):
5252
self.variables = variables
53-
self.env = jinja2.Environment()
53+
# Bandit complains about Jinja2 autoescaping without nosec.
54+
self.env = jinja2.Environment() # nosec
5455
self.env.filters['net_interface'] = _net_interface
5556
self.env.filters['net_parent'] = _net_parent
5657
self.env.filters['net_vlan'] = _net_vlan
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
features:
3+
- |
4+
Bumps ``stackhpc.linux`` Ansible collection to v1.5.1. This adds
5+
support for configuring MIG devices without creating vGPUs.
6+
fixes:
7+
- |
8+
Bumps ``stackhpc.linux`` Ansible collection to v1.5.1. This fixes
9+
race conditions in setup of vGPU SR-IOV devices.

requirements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ collections:
1818
- name: openstack.cloud
1919
version: '<3'
2020
- name: stackhpc.linux
21-
version: 1.3.4
21+
version: 1.5.1
2222
- name: stackhpc.network
2323
version: 1.0.0
2424
- name: stackhpc.openstack

test-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# process, which may cause wedges in the gate later.
44

55
ansible-lint>=25.0.0,<26.0.0 # MIT
6+
bandit>=1.1.0 # Apache-2.0
67
bashate>=0.2 # Apache-2.0
78
coverage>=4.0 # Apache-2.0
89
doc8 # Apache-2.0

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ commands =
3939
# directives.
4040
python3 {toxinidir}/tools/sphinx8 README.rst CONTRIBUTING.rst doc/source --ignore D001
4141
yamllint etc/kayobe
42+
bandit -r --severity-level=high ansible kayobe tools
4243

4344
[testenv:venv]
4445
deps =

0 commit comments

Comments
 (0)