mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
13caaed8b7
* add image verification * inline policy list Signed-off-by: Jim Bugwadia <jim@nirmata.com> * cosign version and dependencies updates Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add registry initialization Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add build tag to exclude k8schain for cloud providers Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add build tag to exclude k8schain for cloud providers Signed-off-by: Jim Bugwadia <jim@nirmata.com> * generate deep copy and other fixtures Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix deep copy issues Signed-off-by: Jim Bugwadia <jim@nirmata.com> * mutate images to add digest Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add certificates to Kyverno container for HTTPS lookups Signed-off-by: Jim Bugwadia <jim@nirmata.com> * align flag syntax Signed-off-by: Jim Bugwadia <jim@nirmata.com> * update docs Signed-off-by: Jim Bugwadia <jim@nirmata.com> * update dependencies Signed-off-by: Jim Bugwadia <jim@nirmata.com> * update dependencies Signed-off-by: Jim Bugwadia <jim@nirmata.com> * patch image with digest and fix checks Signed-off-by: Jim Bugwadia <jim@nirmata.com> * hardcode image for demos Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add default registry (docker.io) before calling reference.Parse Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix definition Signed-off-by: Jim Bugwadia <jim@nirmata.com> * increase webhook timeout Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix args Signed-off-by: Jim Bugwadia <jim@nirmata.com> * run gofmt Signed-off-by: Jim Bugwadia <jim@nirmata.com> * rename for clarity Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix HasImageVerify check Signed-off-by: Jim Bugwadia <jim@nirmata.com> * align make test commands Signed-off-by: Jim Bugwadia <jim@nirmata.com> * align make test commands Signed-off-by: Jim Bugwadia <jim@nirmata.com> * align make test commands Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix linter error Signed-off-by: Jim Bugwadia <jim@nirmata.com> * format Signed-off-by: Jim Bugwadia <jim@nirmata.com> * handle API conflict and retry Signed-off-by: Jim Bugwadia <jim@nirmata.com> * format Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix reviewdog issues Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix make for unit tests Signed-off-by: Jim Bugwadia <jim@nirmata.com> * improve error message Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix durations Signed-off-by: Jim Bugwadia <jim@nirmata.com> * handle errors in tests Signed-off-by: Jim Bugwadia <jim@nirmata.com> * print policy name Signed-off-by: Jim Bugwadia <jim@nirmata.com> * update tests Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add retries and duration to error log Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix time check in tests Signed-off-by: Jim Bugwadia <jim@nirmata.com> * round creation times in test Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix retry loop Signed-off-by: Jim Bugwadia <jim@nirmata.com> * remove timing check for policy creation Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix e2e error - policy not found Signed-off-by: Shuting Zhao <shutting06@gmail.com> * update string comparison method Signed-off-by: Shuting Zhao <shutting06@gmail.com> * fix test Generate_Namespace_Label_Actions Signed-off-by: Shuting Zhao <shutting06@gmail.com> * add debug info for e2e tests Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix error Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix generate bug Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix format Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add check for update operations Signed-off-by: Jim Bugwadia <jim@nirmata.com> * increase time for deleteing a resource Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix check Signed-off-by: Jim Bugwadia <jim@nirmata.com> Co-authored-by: Shuting Zhao <shutting06@gmail.com>
184 lines
5.6 KiB
Go
184 lines
5.6 KiB
Go
package mutate
|
|
|
|
import (
|
|
"github.com/go-logr/logr"
|
|
kyverno "github.com/kyverno/kyverno/pkg/api/kyverno/v1"
|
|
"github.com/kyverno/kyverno/pkg/engine/context"
|
|
"github.com/kyverno/kyverno/pkg/engine/response"
|
|
"github.com/kyverno/kyverno/pkg/engine/utils"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
)
|
|
|
|
// Handler knows how to mutate resources with given pattern
|
|
type Handler interface {
|
|
Handle() (resp response.RuleResponse, newPatchedResource unstructured.Unstructured)
|
|
}
|
|
|
|
// CreateMutateHandler initilizes a new instance of mutation handler
|
|
func CreateMutateHandler(ruleName string, mutate *kyverno.Mutation, patchedResource unstructured.Unstructured, context context.EvalInterface, logger logr.Logger) Handler {
|
|
|
|
switch {
|
|
case isPatchStrategicMerge(mutate):
|
|
return newPatchStrategicMergeHandler(ruleName, mutate, patchedResource, context, logger)
|
|
case isPatchesJSON6902(mutate):
|
|
return newPatchesJSON6902Handler(ruleName, mutate, patchedResource, logger)
|
|
case isOverlay(mutate):
|
|
// return newOverlayHandler(ruleName, mutate, patchedResource, context, logger)
|
|
mutate.PatchStrategicMerge = mutate.Overlay
|
|
var a interface{}
|
|
mutate.Overlay = a
|
|
return newPatchStrategicMergeHandler(ruleName, mutate, patchedResource, context, logger)
|
|
case isPatches(mutate):
|
|
return newPatchesHandler(ruleName, mutate, patchedResource, context, logger)
|
|
default:
|
|
return newEmptyHandler(patchedResource)
|
|
}
|
|
}
|
|
|
|
// patchStrategicMergeHandler
|
|
type patchStrategicMergeHandler struct {
|
|
ruleName string
|
|
mutation *kyverno.Mutation
|
|
patchedResource unstructured.Unstructured
|
|
evalCtx context.EvalInterface
|
|
logger logr.Logger
|
|
}
|
|
|
|
func newPatchStrategicMergeHandler(ruleName string, mutate *kyverno.Mutation, patchedResource unstructured.Unstructured, context context.EvalInterface, logger logr.Logger) Handler {
|
|
return patchStrategicMergeHandler{
|
|
ruleName: ruleName,
|
|
mutation: mutate,
|
|
patchedResource: patchedResource,
|
|
evalCtx: context,
|
|
logger: logger,
|
|
}
|
|
}
|
|
|
|
func (h patchStrategicMergeHandler) Handle() (response.RuleResponse, unstructured.Unstructured) {
|
|
return ProcessStrategicMergePatch(h.ruleName, h.mutation.PatchStrategicMerge, h.patchedResource, h.logger)
|
|
}
|
|
|
|
// overlayHandler
|
|
type overlayHandler struct {
|
|
ruleName string
|
|
mutation *kyverno.Mutation
|
|
patchedResource unstructured.Unstructured
|
|
evalCtx context.EvalInterface
|
|
logger logr.Logger
|
|
}
|
|
|
|
func newOverlayHandler(ruleName string, mutate *kyverno.Mutation, patchedResource unstructured.Unstructured, context context.EvalInterface, logger logr.Logger) Handler {
|
|
return overlayHandler{
|
|
ruleName: ruleName,
|
|
mutation: mutate,
|
|
patchedResource: patchedResource,
|
|
evalCtx: context,
|
|
logger: logger,
|
|
}
|
|
}
|
|
|
|
// patchesJSON6902Handler
|
|
type patchesJSON6902Handler struct {
|
|
ruleName string
|
|
mutation *kyverno.Mutation
|
|
patchedResource unstructured.Unstructured
|
|
evalCtx context.EvalInterface
|
|
logger logr.Logger
|
|
}
|
|
|
|
func newPatchesJSON6902Handler(ruleName string, mutate *kyverno.Mutation, patchedResource unstructured.Unstructured, logger logr.Logger) Handler {
|
|
return patchesJSON6902Handler{
|
|
ruleName: ruleName,
|
|
mutation: mutate,
|
|
patchedResource: patchedResource,
|
|
logger: logger,
|
|
}
|
|
}
|
|
|
|
func (h patchesJSON6902Handler) Handle() (resp response.RuleResponse, patchedResource unstructured.Unstructured) {
|
|
resp.Name = h.ruleName
|
|
resp.Type = utils.Mutation.String()
|
|
|
|
patchesJSON6902, err := convertPatchesToJSON(h.mutation.PatchesJSON6902)
|
|
if err != nil {
|
|
resp.Success = false
|
|
h.logger.Error(err, "error in type conversion")
|
|
resp.Message = err.Error()
|
|
return resp, h.patchedResource
|
|
}
|
|
|
|
return ProcessPatchJSON6902(h.ruleName, patchesJSON6902, h.patchedResource, h.logger)
|
|
}
|
|
|
|
func (h overlayHandler) Handle() (response.RuleResponse, unstructured.Unstructured) {
|
|
return ProcessOverlay(h.logger, h.ruleName, h.mutation.Overlay, h.patchedResource)
|
|
}
|
|
|
|
// patchesHandler
|
|
type patchesHandler struct {
|
|
ruleName string
|
|
mutation *kyverno.Mutation
|
|
patchedResource unstructured.Unstructured
|
|
evalCtx context.EvalInterface
|
|
logger logr.Logger
|
|
}
|
|
|
|
func newPatchesHandler(ruleName string, mutate *kyverno.Mutation, patchedResource unstructured.Unstructured, context context.EvalInterface, logger logr.Logger) Handler {
|
|
return patchesHandler{
|
|
ruleName: ruleName,
|
|
mutation: mutate,
|
|
patchedResource: patchedResource,
|
|
evalCtx: context,
|
|
logger: logger,
|
|
}
|
|
}
|
|
|
|
func (h patchesHandler) Handle() (resp response.RuleResponse, patchedResource unstructured.Unstructured) {
|
|
resp.Name = h.ruleName
|
|
resp.Type = utils.Mutation.String()
|
|
|
|
return ProcessPatches(h.logger, h.ruleName, *h.mutation, h.patchedResource)
|
|
}
|
|
|
|
// emptyHandler
|
|
type emptyHandler struct {
|
|
patchedResource unstructured.Unstructured
|
|
}
|
|
|
|
func newEmptyHandler(patchedResource unstructured.Unstructured) Handler {
|
|
return emptyHandler{
|
|
patchedResource: patchedResource,
|
|
}
|
|
}
|
|
|
|
func (h emptyHandler) Handle() (response.RuleResponse, unstructured.Unstructured) {
|
|
return response.RuleResponse{}, h.patchedResource
|
|
}
|
|
|
|
func isPatchStrategicMerge(mutate *kyverno.Mutation) bool {
|
|
if mutate.PatchStrategicMerge != nil {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
func isPatchesJSON6902(mutate *kyverno.Mutation) bool {
|
|
if len(mutate.PatchesJSON6902) > 0 {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
func isOverlay(mutate *kyverno.Mutation) bool {
|
|
if mutate.Overlay != nil {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
func isPatches(mutate *kyverno.Mutation) bool {
|
|
if len(mutate.Patches) != 0 {
|
|
return true
|
|
}
|
|
return false
|
|
}
|