mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
ffd2179b03
* initial commit * background policy validation * correct message * skip non-background policy process for add/update * add Generate Request CR * generate Request Generator Initial * test generate request CR generation * initial commit gr generator * generate controller initial framework * add crd for generate request * gr cleanup controller initial commit * cleanup controller initial * generate mid-commit * generate rule processing * create PV on generate error * embed resource type * testing phase 1- generate resources with variable substitution * fix tests * comment broken test #586 * add printer column for state * return if existing resource for clone * set resync time to 2 mins & remove resource version check in update handler for gr * generate events for reporting * fix logs * cleanup * CR fixes * fix logs
34 lines
1.1 KiB
Go
34 lines
1.1 KiB
Go
package engine
|
|
|
|
import (
|
|
kyverno "github.com/nirmata/kyverno/pkg/api/kyverno/v1"
|
|
client "github.com/nirmata/kyverno/pkg/dclient"
|
|
"github.com/nirmata/kyverno/pkg/engine/context"
|
|
authenticationv1 "k8s.io/api/authentication/v1"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
)
|
|
|
|
// PolicyContext contains the contexts for engine to process
|
|
type PolicyContext struct {
|
|
// policy to be processed
|
|
Policy kyverno.ClusterPolicy
|
|
// resource to be processed
|
|
NewResource unstructured.Unstructured
|
|
// old Resource - Update operations
|
|
OldResource unstructured.Unstructured
|
|
AdmissionInfo kyverno.RequestInfo
|
|
// Dynamic client - used by generate
|
|
Client *client.Client
|
|
// Contexts to store resources
|
|
Context context.EvalInterface
|
|
}
|
|
|
|
// RequestInfo contains permission info carried in an admission request
|
|
type RequestInfo struct {
|
|
// Roles is a list of possible role send the request
|
|
Roles []string
|
|
// ClusterRoles is a list of possible clusterRoles send the request
|
|
ClusterRoles []string
|
|
// UserInfo is the userInfo carried in the admission request
|
|
AdmissionUserInfo authenticationv1.UserInfo
|
|
}
|