Skip to content

Commit 8a754d0

Browse files
committed
merging 9.5 podman fixes
2 parents 5effb3f + d7a8dd2 commit 8a754d0

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

.github/workflows/trivyscan.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,20 @@ jobs:
2525
steps:
2626
- uses: actions/checkout@v2
2727

28+
- name: Override CI_CLOUD if PR label is present
29+
if: ${{ github.event_name == 'pull_request' }}
30+
run: |
31+
# Iterate over the labels
32+
labels=$(echo '${{ toJSON(github.event.pull_request.labels) }}' | jq -r '.[].name')
33+
echo $labels
34+
for label in $labels; do
35+
if [[ $label == CI_CLOUD=* ]]; then
36+
# Extract the value after 'CI_CLOUD='
37+
CI_CLOUD_OVERRIDE=${label#CI_CLOUD=}
38+
echo "CI_CLOUD=${CI_CLOUD_OVERRIDE}" >> $GITHUB_ENV
39+
fi
40+
done
41+
2842
- name: Record settings for CI cloud
2943
run: |
3044
echo CI_CLOUD: ${{ env.CI_CLOUD }}

ansible/roles/podman/tasks/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
# Type Path Mode User Group Age Argument
5656
R! /tmp/containers-user-*
5757
R! /tmp/podman-run-*
58+
R! /tmp/storage-run-*
5859
dest: /etc/tmpfiles.d/podman-local.conf
5960
owner: root
6061
group: root

requirements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ roles:
2525

2626
collections:
2727
- name: containers.podman
28-
version: 1.10.2
28+
version: 1.16.2
2929
- name: community.grafana
3030
version: 1.5.4
3131
- name: https://github.com/stackhpc/ansible_collection_slurm_openstack_tools

0 commit comments

Comments
 (0)