1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2024-12-14 11:57:48 +00:00
kyverno/pkg/engine/policy_context.go
Charles-Edouard Brétéché 83840a2462
refactor: hide json context from caller (#7139)
* refactor: hide json context from caller

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>

* fix

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>

* fix

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>

* fix

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>

* unit tests

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>

* fix

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>

---------

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
2023-05-12 14:14:48 +00:00

13 lines
364 B
Go

package engine
import (
"github.com/kyverno/kyverno/pkg/engine/policycontext"
)
// PolicyContext contains the contexts for engine to process
type PolicyContext = policycontext.PolicyContext
var (
NewPolicyContext = policycontext.NewPolicyContext
NewPolicyContextFromAdmissionRequest = policycontext.NewPolicyContextFromAdmissionRequest
)