mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
225 lines
No EOL
7.1 KiB
YAML
225 lines
No EOL
7.1 KiB
YAML
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: policies.kyverno.io
|
|
spec:
|
|
group: kyverno.io
|
|
versions:
|
|
- name: v1alpha1
|
|
served: true
|
|
storage: true
|
|
scope: Cluster
|
|
names:
|
|
kind: Policy
|
|
plural: policies
|
|
singular: policy
|
|
subresources:
|
|
status: {}
|
|
validation:
|
|
openAPIV3Schema:
|
|
properties:
|
|
spec:
|
|
required:
|
|
- rules
|
|
properties:
|
|
# default values to be handled by user
|
|
validationFailureAction:
|
|
type: string
|
|
enum:
|
|
- enforce # blocks the resorce api-reques if a rule fails. Default behavior
|
|
- audit # allows resource creationg and reports the failed validation rules as violations
|
|
rules:
|
|
type: array
|
|
items:
|
|
type: object
|
|
required:
|
|
- name
|
|
- match
|
|
properties:
|
|
name:
|
|
type: string
|
|
match:
|
|
type: object
|
|
required:
|
|
- resources
|
|
properties:
|
|
resources:
|
|
type: object
|
|
required:
|
|
- kinds
|
|
properties:
|
|
kinds:
|
|
type: array
|
|
items:
|
|
type: string
|
|
name:
|
|
type: string
|
|
namespaces:
|
|
type: array
|
|
items:
|
|
type: string
|
|
selector:
|
|
properties:
|
|
matchLabels:
|
|
type: object
|
|
additionalProperties:
|
|
type: string
|
|
matchExpressions:
|
|
type: array
|
|
items:
|
|
type: object
|
|
required:
|
|
- key
|
|
- operator
|
|
properties:
|
|
key:
|
|
type: string
|
|
operator:
|
|
type: string
|
|
values:
|
|
type: array
|
|
items:
|
|
type: string
|
|
exclude:
|
|
type: object
|
|
required:
|
|
- resources
|
|
properties:
|
|
resources:
|
|
type: object
|
|
properties:
|
|
kinds:
|
|
type: array
|
|
items:
|
|
type: string
|
|
name:
|
|
type: string
|
|
namespaces:
|
|
type: array
|
|
items:
|
|
type: string
|
|
selector:
|
|
properties:
|
|
matchLabels:
|
|
type: object
|
|
additionalProperties:
|
|
type: string
|
|
matchExpressions:
|
|
type: array
|
|
items:
|
|
type: object
|
|
required:
|
|
- key
|
|
- operator
|
|
properties:
|
|
key:
|
|
type: string
|
|
operator:
|
|
type: string
|
|
values:
|
|
type: array
|
|
items:
|
|
type: string
|
|
mutate:
|
|
type: object
|
|
properties:
|
|
overlay:
|
|
AnyValue: {}
|
|
patches:
|
|
type: array
|
|
items:
|
|
type: object
|
|
required:
|
|
- path
|
|
- op
|
|
properties:
|
|
path:
|
|
type: string
|
|
op:
|
|
type: string
|
|
enum:
|
|
- add
|
|
- replace
|
|
- remove
|
|
value:
|
|
AnyValue: {}
|
|
validate:
|
|
type: object
|
|
properties:
|
|
message:
|
|
type: string
|
|
pattern:
|
|
AnyValue: {}
|
|
anyPattern:
|
|
AnyValue: {}
|
|
generate:
|
|
type: object
|
|
required:
|
|
- kind
|
|
- name
|
|
properties:
|
|
kind:
|
|
type: string
|
|
name:
|
|
type: string
|
|
clone:
|
|
type: object
|
|
required:
|
|
- namespace
|
|
- name
|
|
properties:
|
|
namespace:
|
|
type: string
|
|
name:
|
|
type: string
|
|
data:
|
|
AnyValue: {}
|
|
---
|
|
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: policyviolations.kyverno.io
|
|
spec:
|
|
group: kyverno.io
|
|
versions:
|
|
- name: v1alpha1
|
|
served: true
|
|
storage: true
|
|
scope: Cluster
|
|
names:
|
|
kind: PolicyViolation
|
|
plural: policyviolations
|
|
singular: policyviolation
|
|
subresources:
|
|
status: {}
|
|
validation:
|
|
openAPIV3Schema:
|
|
properties:
|
|
spec:
|
|
required:
|
|
- policy
|
|
- resource
|
|
- rules
|
|
properties:
|
|
policy:
|
|
type: string
|
|
resource:
|
|
type: object
|
|
required:
|
|
- kind
|
|
- name
|
|
properties:
|
|
kind:
|
|
type: string
|
|
name:
|
|
type: string
|
|
namespace:
|
|
type: string
|
|
rules:
|
|
type: array
|
|
items:
|
|
type: object
|
|
required:
|
|
- name
|
|
- type
|
|
- message |