Skip to content

Commit

Permalink
fixup! fix: OADP-3189 do not remove labels from OADP namespace
Browse files Browse the repository at this point in the history
Signed-off-by: Mateus Oliveira <msouzaol@redhat.com>
  • Loading branch information
mateusoliveira43 committed Jan 19, 2024
1 parent e433443 commit 2495f47
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ const (
CloudCredentialsCRDName = "credentialsrequests"

// Pod security admission (PSA) labels
pSALabelPrefix = "pod-security.kubernetes.io/"
enforceLabel = pSALabelPrefix + "enforce"
auditLabel = pSALabelPrefix + "audit"
warnLabel = pSALabelPrefix + "warn"
psaLabelPrefix = "pod-security.kubernetes.io/"
enforceLabel = psaLabelPrefix + "enforce"
auditLabel = psaLabelPrefix + "audit"
warnLabel = psaLabelPrefix + "warn"

privileged = "privileged"
)
Expand Down

0 comments on commit 2495f47

Please sign in to comment.