1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

chore: enable policy exceptions by default ()

Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com>
This commit is contained in:
Mariam Fahmy 2023-09-27 20:40:13 +03:00 committed by GitHub
parent 482c243517
commit b80963374f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 6 deletions

View file

@ -13,6 +13,7 @@
- Added `--aggregateReports` flag for reports controller to enable/disable aggregated reports (default value is `true`). - Added `--aggregateReports` flag for reports controller to enable/disable aggregated reports (default value is `true`).
- Added `--policyReports` flag for reports controller to enable/disable policy reports (default value is `true`). - Added `--policyReports` flag for reports controller to enable/disable policy reports (default value is `true`).
- Renamed CLI flag `--compact` to `--detailed-results` (and changed default value from `true` to `false`). - Renamed CLI flag `--compact` to `--detailed-results` (and changed default value from `true` to `false`).
- Changed the default value of `--enablePolicyException` from `false` to `true`.
## v1.10.0 ## v1.10.0

View file

@ -308,7 +308,7 @@ The chart values are organised per component.
| features.logging.format | string | `"text"` | Logging format | | features.logging.format | string | `"text"` | Logging format |
| features.logging.verbosity | int | `2` | Logging verbosity | | features.logging.verbosity | int | `2` | Logging verbosity |
| features.omitEvents.eventTypes | list | `[]` | Events which should not be emitted (possible values `PolicyViolation`, `PolicyApplied`, `PolicyError`, and `PolicySkipped`) | | features.omitEvents.eventTypes | list | `[]` | Events which should not be emitted (possible values `PolicyViolation`, `PolicyApplied`, `PolicyError`, and `PolicySkipped`) |
| features.policyExceptions.enabled | bool | `false` | Enables the feature | | features.policyExceptions.enabled | bool | `true` | Enables the feature |
| features.policyExceptions.namespace | string | `""` | Restrict policy exceptions to a single namespace | | features.policyExceptions.namespace | string | `""` | Restrict policy exceptions to a single namespace |
| features.protectManagedResources.enabled | bool | `false` | Enables the feature | | features.protectManagedResources.enabled | bool | `false` | Enables the feature |
| features.registryClient.allowInsecure | bool | `false` | Allow insecure registry | | features.registryClient.allowInsecure | bool | `false` | Allow insecure registry |

View file

@ -425,7 +425,7 @@ features:
# - PolicySkipped # - PolicySkipped
policyExceptions: policyExceptions:
# -- Enables the feature # -- Enables the feature
enabled: false enabled: true
# -- Restrict policy exceptions to a single namespace # -- Restrict policy exceptions to a single namespace
namespace: '' namespace: ''
protectManagedResources: protectManagedResources:

View file

@ -89,7 +89,7 @@ func initKubeconfigFlags(qps float64, burst int) {
func initPolicyExceptionsFlags() { func initPolicyExceptionsFlags() {
flag.StringVar(&exceptionNamespace, "exceptionNamespace", "", "Configure the namespace to accept PolicyExceptions.") flag.StringVar(&exceptionNamespace, "exceptionNamespace", "", "Configure the namespace to accept PolicyExceptions.")
flag.BoolVar(&enablePolicyException, "enablePolicyException", false, "Enable PolicyException feature.") flag.BoolVar(&enablePolicyException, "enablePolicyException", true, "Enable PolicyException feature.")
} }
func initConfigMapCachingFlags() { func initConfigMapCachingFlags() {

View file

@ -42328,7 +42328,7 @@ spec:
- --generateValidatingAdmissionPolicy=false - --generateValidatingAdmissionPolicy=false
- --loggingFormat=text - --loggingFormat=text
- --v=2 - --v=2
- --enablePolicyException=false - --enablePolicyException=true
- --protectManagedResources=false - --protectManagedResources=false
- --allowInsecureRegistry=false - --allowInsecureRegistry=false
- --registryCredentialHelpers=default,google,amazon,azure,github - --registryCredentialHelpers=default,google,amazon,azure,github
@ -42474,7 +42474,7 @@ spec:
- --enableDeferredLoading=true - --enableDeferredLoading=true
- --loggingFormat=text - --loggingFormat=text
- --v=2 - --v=2
- --enablePolicyException=false - --enablePolicyException=true
env: env:
- name: KYVERNO_SERVICEACCOUNT_NAME - name: KYVERNO_SERVICEACCOUNT_NAME
value: kyverno-background-controller value: kyverno-background-controller
@ -42711,7 +42711,7 @@ spec:
- --enableDeferredLoading=true - --enableDeferredLoading=true
- --loggingFormat=text - --loggingFormat=text
- --v=2 - --v=2
- --enablePolicyException=false - --enablePolicyException=true
- --reportsChunkSize=1000 - --reportsChunkSize=1000
- --allowInsecureRegistry=false - --allowInsecureRegistry=false
- --registryCredentialHelpers=default,google,amazon,azure,github - --registryCredentialHelpers=default,google,amazon,azure,github