mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
fix: background printer column (#4617)
Signed-off-by: Charles-Edouard Brétéché <charled.breteche@gmail.com> Signed-off-by: Charles-Edouard Brétéché <charled.breteche@gmail.com>
This commit is contained in:
parent
cadf577e4b
commit
530a584f76
6 changed files with 21 additions and 16 deletions
|
@ -14,10 +14,10 @@ import (
|
|||
// +kubebuilder:object:root=true
|
||||
// +kubebuilder:subresource:status
|
||||
// +kubebuilder:resource:path=clusterpolicies,scope="Cluster",shortName=cpol
|
||||
// +kubebuilder:printcolumn:name="Background",type="string",JSONPath=".spec.background"
|
||||
// +kubebuilder:printcolumn:name="Validate Action",type="string",JSONPath=".spec.validationFailureAction"
|
||||
// +kubebuilder:printcolumn:name="Failure Policy",type="string",JSONPath=".spec.failurePolicy",priority=1
|
||||
// +kubebuilder:printcolumn:name="Ready",type=string,JSONPath=`.status.ready`
|
||||
// +kubebuilder:printcolumn:name="Background",type=boolean,JSONPath=".spec.background"
|
||||
// +kubebuilder:printcolumn:name="Validate Action",type=string,JSONPath=".spec.validationFailureAction"
|
||||
// +kubebuilder:printcolumn:name="Failure Policy",type=string,JSONPath=".spec.failurePolicy",priority=1
|
||||
// +kubebuilder:printcolumn:name="Ready",type=boolean,JSONPath=`.status.ready`
|
||||
// +kubebuilder:storageversion
|
||||
|
||||
// ClusterPolicy declares validation, mutation, and generation behaviors for matching resources.
|
||||
|
|
|
@ -12,10 +12,10 @@ import (
|
|||
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
|
||||
// +kubebuilder:object:root=true
|
||||
// +kubebuilder:subresource:status
|
||||
// +kubebuilder:printcolumn:name="Background",type="string",JSONPath=".spec.background"
|
||||
// +kubebuilder:printcolumn:name="Validate Action",type="string",JSONPath=".spec.validationFailureAction"
|
||||
// +kubebuilder:printcolumn:name="Failure Policy",type="string",JSONPath=".spec.failurePolicy",priority=1
|
||||
// +kubebuilder:printcolumn:name="Ready",type=string,JSONPath=`.status.ready`
|
||||
// +kubebuilder:printcolumn:name="Background",type=boolean,JSONPath=".spec.background"
|
||||
// +kubebuilder:printcolumn:name="Validate Action",type=string,JSONPath=".spec.validationFailureAction"
|
||||
// +kubebuilder:printcolumn:name="Failure Policy",type=string,JSONPath=".spec.failurePolicy",priority=1
|
||||
// +kubebuilder:printcolumn:name="Ready",type=boolean,JSONPath=`.status.ready`
|
||||
// +kubebuilder:resource:shortName=pol
|
||||
// +kubebuilder:storageversion
|
||||
|
||||
|
|
|
@ -60,6 +60,7 @@ type Spec struct {
|
|||
// Optional. Default value is "true". The value must be set to "false" if the policy rule
|
||||
// uses variables that are only available in the admission review request (e.g. user name).
|
||||
// +optional
|
||||
// +kubebuilder:default=true
|
||||
Background *bool `json:"background,omitempty" yaml:"background,omitempty"`
|
||||
|
||||
// SchemaValidation skips policy validation checks.
|
||||
|
|
|
@ -28,7 +28,7 @@ spec:
|
|||
- additionalPrinterColumns:
|
||||
- jsonPath: .spec.background
|
||||
name: Background
|
||||
type: string
|
||||
type: boolean
|
||||
- jsonPath: .spec.validationFailureAction
|
||||
name: Validate Action
|
||||
type: string
|
||||
|
@ -38,7 +38,7 @@ spec:
|
|||
type: string
|
||||
- jsonPath: .status.ready
|
||||
name: Ready
|
||||
type: string
|
||||
type: boolean
|
||||
name: v1
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
|
@ -62,6 +62,7 @@ spec:
|
|||
- One
|
||||
type: string
|
||||
background:
|
||||
default: true
|
||||
description: Background controls if rules are applied to existing resources during a background scan. Optional. Default value is "true". The value must be set to "false" if the policy rule uses variables that are only available in the admission review request (e.g. user name).
|
||||
type: boolean
|
||||
failurePolicy:
|
||||
|
@ -7561,7 +7562,7 @@ spec:
|
|||
- additionalPrinterColumns:
|
||||
- jsonPath: .spec.background
|
||||
name: Background
|
||||
type: string
|
||||
type: boolean
|
||||
- jsonPath: .spec.validationFailureAction
|
||||
name: Validate Action
|
||||
type: string
|
||||
|
@ -7571,7 +7572,7 @@ spec:
|
|||
type: string
|
||||
- jsonPath: .status.ready
|
||||
name: Ready
|
||||
type: string
|
||||
type: boolean
|
||||
name: v1
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
|
@ -7595,6 +7596,7 @@ spec:
|
|||
- One
|
||||
type: string
|
||||
background:
|
||||
default: true
|
||||
description: Background controls if rules are applied to existing resources during a background scan. Optional. Default value is "true". The value must be set to "false" if the policy rule uses variables that are only available in the admission review request (e.g. user name).
|
||||
type: boolean
|
||||
failurePolicy:
|
||||
|
|
|
@ -20,7 +20,7 @@ spec:
|
|||
- additionalPrinterColumns:
|
||||
- jsonPath: .spec.background
|
||||
name: Background
|
||||
type: string
|
||||
type: boolean
|
||||
- jsonPath: .spec.validationFailureAction
|
||||
name: Validate Action
|
||||
type: string
|
||||
|
@ -30,7 +30,7 @@ spec:
|
|||
type: string
|
||||
- jsonPath: .status.ready
|
||||
name: Ready
|
||||
type: string
|
||||
type: boolean
|
||||
name: v1
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
|
@ -63,6 +63,7 @@ spec:
|
|||
- One
|
||||
type: string
|
||||
background:
|
||||
default: true
|
||||
description: Background controls if rules are applied to existing
|
||||
resources during a background scan. Optional. Default value is "true".
|
||||
The value must be set to "false" if the policy rule uses variables
|
||||
|
|
|
@ -20,7 +20,7 @@ spec:
|
|||
- additionalPrinterColumns:
|
||||
- jsonPath: .spec.background
|
||||
name: Background
|
||||
type: string
|
||||
type: boolean
|
||||
- jsonPath: .spec.validationFailureAction
|
||||
name: Validate Action
|
||||
type: string
|
||||
|
@ -30,7 +30,7 @@ spec:
|
|||
type: string
|
||||
- jsonPath: .status.ready
|
||||
name: Ready
|
||||
type: string
|
||||
type: boolean
|
||||
name: v1
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
|
@ -64,6 +64,7 @@ spec:
|
|||
- One
|
||||
type: string
|
||||
background:
|
||||
default: true
|
||||
description: Background controls if rules are applied to existing
|
||||
resources during a background scan. Optional. Default value is "true".
|
||||
The value must be set to "false" if the policy rule uses variables
|
||||
|
|
Loading…
Add table
Reference in a new issue