1
0
Fork 0
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:
Prateek Pandey 2021-12-28 19:52:52 +05:30 committed by GitHub
parent 0a92a2fed8
commit f6e40b5dd1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

2
go.mod
View file

@ -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

View file

@ -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)