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
3 changes: 2 additions & 1 deletion .github/workflows/csi_security.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,12 @@ jobs:
webhook-type: incoming-webhook
payload: |
{
"text": ":rotating_light: *Security scan failed* — vulnerabilities found in `${{ github.repository }}`",
"text": ":rotating_light: *Security scan failed* — vulnerabilities found in `${{ env.IMAGE_NAME }}`",
"attachments": [
{
"color": "danger",
"fields": [
{ "title": "Image", "value": "${{ env.IMAGE_NAME }}", "short": true },
{ "title": "Branch", "value": "${{ github.ref_name }}", "short": true },
{ "title": "Commit", "value": "${{ github.sha }}", "short": true },
{ "title": "Workflow", "value": "<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View run>", "short": false }
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/operator_security.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,12 @@ jobs:
webhook-type: incoming-webhook
payload: |
{
"text": ":rotating_light: *Security scan failed* — vulnerabilities found in `${{ github.repository }}`",
"text": ":rotating_light: *Security scan failed* — vulnerabilities found in `${{ matrix.image }}`",
"attachments": [
{
"color": "danger",
"fields": [
{ "title": "Image", "value": "${{ matrix.image }}", "short": true },
{ "title": "Branch", "value": "${{ github.ref_name }}", "short": true },
{ "title": "Commit", "value": "${{ github.sha }}", "short": true },
{ "title": "Workflow", "value": "<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View run>", "short": false }
Expand Down
1 change: 1 addition & 0 deletions operator/Dockerfile.simplyblock-rebalancer
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ RUN dnf update -y --nogpgcheck && \
fio \
nvme-cli \
sudo \
&& dnf remove -y python3-urllib3 python3-requests python3-idna --nogpgcheck \
&& dnf clean all

COPY --from=builder /workspace/simplyblock-rebalancer /usr/local/bin/simplyblock-rebalancer
Expand Down
Loading