Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ class FakeTemplar(object):

def __init__(self, variables):
self.variables = variables
self.env = jinja2.Environment()
# Bandit complains about Jinja2 autoescaping without nosec.
self.env = jinja2.Environment() # nosec
self.env.filters['net_interface'] = _net_interface
self.env.filters['net_parent'] = _net_parent
self.env.filters['net_vlan'] = _net_vlan
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
features:
- |
Bumps ``stackhpc.linux`` Ansible collection to v1.5.1. This adds
support for configuring MIG devices without creating vGPUs.
fixes:
- |
Bumps ``stackhpc.linux`` Ansible collection to v1.5.1. This fixes
race conditions in setup of vGPU SR-IOV devices.
2 changes: 1 addition & 1 deletion requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ collections:
- name: openstack.cloud
version: '<3'
- name: stackhpc.linux
version: 1.3.4
version: 1.5.1
- name: stackhpc.network
version: 1.0.0
- name: stackhpc.openstack
Expand Down
1 change: 1 addition & 0 deletions test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# process, which may cause wedges in the gate later.

ansible-lint>=25.0.0,<26.0.0 # MIT
bandit>=1.1.0 # Apache-2.0
bashate>=0.2 # Apache-2.0
coverage>=4.0 # Apache-2.0
doc8 # Apache-2.0
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ commands =
# directives.
python3 {toxinidir}/tools/sphinx8 README.rst CONTRIBUTING.rst doc/source --ignore D001
yamllint etc/kayobe
bandit -r --severity-level=high ansible kayobe tools

[testenv:venv]
deps =
Expand Down