Skip to content

Commit

Permalink
Fixing AI
Browse files Browse the repository at this point in the history
  • Loading branch information
amitschendel committed Aug 9, 2023
1 parent 3a09b68 commit 3e3d4eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rules/alert-any-hostpath/raw.rego
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,5 @@ deny[msga] {

is_dangerous_volume(volume, beggining_of_path, i) = path {
volume.hostPath.path
path = volume.hostPath.path != null ? sprintf("%vvolumes[%v].hostPath.path", [beggining_of_path, format_int(i, 10)]) : null
path = sprintf("%vvolumes[%v].hostPath.path", [beggining_of_path, format_int(i, 10)]) : null
}

0 comments on commit 3e3d4eb

Please sign in to comment.