mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
feat(validation): support for ephemeral containers (#2875)
Signed-off-by: prateekpandey14 <prateekpandey14@gmail.com>
This commit is contained in:
parent
0a92a2fed8
commit
f6e40b5dd1
2 changed files with 5 additions and 1 deletions
2
go.mod
2
go.mod
|
@ -54,7 +54,7 @@ require (
|
|||
)
|
||||
|
||||
require (
|
||||
github.com/aquilax/truncate v1.0.0 // indirect
|
||||
github.com/aquilax/truncate v1.0.0
|
||||
github.com/blang/semver/v4 v4.0.0
|
||||
github.com/opencontainers/image-spec v1.0.2 // indirect
|
||||
gopkg.in/inf.v0 v0.9.1
|
||||
|
|
|
@ -736,6 +736,10 @@ func (m *webhookConfigManager) mergeWebhook(dst *webhook, policy *kyverno.Cluste
|
|||
rsrcs = append(rsrcs, gvr.Resource)
|
||||
}
|
||||
|
||||
if utils.ContainsString(rsrcs, "pods") {
|
||||
rsrcs = append(rsrcs, "pods/ephemeralcontainers")
|
||||
}
|
||||
|
||||
dst.rule[apiGroups] = removeDuplicates(groups)
|
||||
dst.rule[apiVersions] = removeDuplicates(versions)
|
||||
dst.rule[resources] = removeDuplicates(rsrcs)
|
||||
|
|
Loading…
Add table
Reference in a new issue