You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## This script generates the policies for the kyverno policies directory
4
+
#
5
+
set -e
6
+
7
+
# Set colors for terminal output
8
+
GREEN='\033[0;32m'
9
+
NC='\033[0m'# No Color
10
+
11
+
cat <<EOF
12
+
# Kyverno Policies
13
+
14
+
## Overview
15
+
16
+
Kyverno is a policy engine designed for Kubernetes that validates, mutates, and generates configurations using policies as Kubernetes resources. It provides key features like:
17
+
18
+
- Policy validation and enforcement
19
+
- Resource mutation and generation
20
+
- Image verification and security controls
21
+
- Audit logging and reporting
22
+
- Admission control webhooks
23
+
24
+
The following policies are shipped by default in this platform to enforce security best practices, resource management, and operational standards.
25
+
26
+
For detailed information about Kyverno's capabilities, refer to the [official documentation](https://kyverno.io/docs/) or [policy library](https://kyverno.io/policies/).
27
+
28
+
---
29
+
EOF
30
+
31
+
# Find all policy.yaml files in the kyverno directory
0 commit comments