1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2024-12-14 11:57:48 +00:00
Cloud Native Policy Management
Find a file
2019-11-13 14:18:28 -08:00
.github Update scenario-to-support.md 2019-10-30 08:31:48 -07:00
cmd/kyverno change logger to glog 2019-06-03 17:54:19 -07:00
definitions Merge branch 'master' into 455_namespace_pv 2019-11-13 11:46:46 -08:00
documentation add docs for rule structure match / exclude 2019-11-13 14:18:28 -08:00
gh-pages update static page text 2019-06-16 21:34:57 -07:00
pkg remove GetOwners() 2019-11-13 12:34:55 -08:00
samples Merge commit 'da5c03f89df3007088b27fc84b08827170e16eda' into 345_support_usergroup_info 2019-11-13 00:31:07 -08:00
scripts remove unused yamls 2019-11-06 15:40:19 -08:00
test fix test 2019-11-13 00:44:07 -08:00
vendor update vendor 2019-11-12 19:17:36 -08:00
.directory Implemented validation across same yaml 2019-06-20 18:21:55 +03:00
.gitignore integrate with pv genreator 2019-11-12 19:17:15 -08:00
.travis.yml testing 2019-10-17 14:35:13 -07:00
CODE_OF_CONDUCT.md add code of conduct & contributing section 2019-06-12 09:39:37 -07:00
CONTRIBUTING.md Create CONTRIBUTING.md 2019-06-22 14:44:37 -07:00
Dockerfile - add Makefile 2019-05-22 21:41:24 -07:00
Gopkg.toml cleanup pv with dependant when blocked admission request pass 2019-10-23 23:18:58 -07:00
init.go add profiling flags 2019-08-02 11:18:02 -07:00
LICENSE Create LICENSE 2019-06-05 23:00:32 -04:00
main.go Merge branch 'master' into 455_namespace_pv 2019-11-13 11:46:46 -08:00
Makefile initial targets for unit test and code coverage 2019-06-07 11:50:12 -07:00
README.md fix link, add samples, move license 2019-11-12 23:52:59 -08:00

Kyverno - Kubernetes Native Policy Management

Build Status Go Report Card

logo

Kyverno is a policy engine designed for Kubernetes.

Kubernetes supports declarative validation, mutation, and generation of resource configurations using policies written as Kubernetes resources.

Kyverno can be used to scan existing workloads for best practices, or can be used to enforce best practices by blocking or mutating API requests.Kyverno allows cluster adminstrators to manage environment specific configurations independently of workload configurations and enforce configuration best practices for their clusters.

Kyverno policies are Kubernetes resources that can be written in YAML or JSON. Kyverno policies can validate, mutate, and generate any Kubernetes resources.

Kyverno runs as a dynamic admission controller in a Kubernetes cluster. Kyverno receives validating and mutating admission webhook HTTP callbacks from the kube-apiserver and applies matching policies to return results that enforce admission policies or reject requests.

Kyverno policies can match resources using the resource kind, name, and label selectors. Wildcards are supported in names.

Mutating policies can be written as overlays (similar to Kustomize) or as a JSON Patch. Validating policies also use an overlay style syntax, with support for pattern matching and conditional (if-then-else) processing.

Policy enforcement is captured using Kubernetes events. Kyverno also reports policy violations for existing resources.

Examples

1. Validating resources

This policy requires that all pods have CPU and memory resource requests and limits:

apiVersion: kyverno.io/v1alpha1
kind: Policy
metadata:
  name: check-cpu-memory
spec:
  rules:
  - name: check-pod-resources
    match:
      resources:
        kinds:
        - Pod
    validate:
      message: "CPU and memory resource requests and limits are required"
      pattern:
        spec:
          containers:
          # 'name: *' selects all containers in the pod
          - name: "*"
            resources:
              limits:
                # '?' requires 1 alphanumeric character and '*' means that there can be 0 or more characters.
                # Using them together e.g. '?*' requires at least one character. 
                memory: "?*"
                cpu: "?*"
              requests:
                memory: "?*"
                cpu: "?*"

2. Mutating resources

This policy sets the imagePullPolicy to Always if the image tag is latest:

apiVersion: kyverno.io/v1alpha1
kind: Policy
metadata:
  name: set-image-pull-policy
spec:
  rules:
  - name: set-image-pull-policy
    match:
      resources:
        kinds:
        - Deployment
    mutate:
      overlay:
        spec:
          template:
            spec:
              containers:
                # match images which end with :latest   
                - (image): "*:latest"
                  # set the imagePullPolicy to "Always"
                  imagePullPolicy: "Always"

3. Generating resources

This policy sets the Zookeeper and Kafka connection strings for all namespaces with a label key 'kafka'.

apiVersion: kyverno.io/v1alpha1
kind: Policy
metadata:
  name: "zk-kafka-address"
spec:
  rules:
  - name: "zk-kafka-address"
    match:
      resources:
        kinds:
          - Namespace
        selector:
          matchExpressions:
          - {key: kafka, operator: Exists}
    generate:
      kind: ConfigMap
      name: zk-kafka-address
      data:
        kind: ConfigMap
        data:
          ZK_ADDRESS: "192.168.10.10:2181,192.168.10.11:2181,192.168.10.12:2181"
          KAFKA_ADDRESS: "192.168.10.13:9092,192.168.10.14:9092,192.168.10.15:9092"

4. More examples

Refer to a list of curated of sample policies that can be applied to your cluster.

Documentation

License

Apache License 2.0

Alternatives

Open Policy Agent

Open Policy Agent (OPA) is a general-purpose policy engine that can be used as a Kubernetes admission controller. It supports a large set of use cases. Policies are written using Rego a custom query language.

k-rail

k-rail provides several ready to use policies for security and multi-tenancy. The policies are written in Golang. Several of the Kyverno sample policies were inspired by k-rail policies.

Polaris

Polaris validates configurations for best practices. It includes several checks across health, networking, security, etc. Checks can be assigned a severity. A dashboard reports the overall score.

External configuration management tools

Tools like Kustomize can be used to manage variations in configurations outside of clusters. There are several advantages to this approach when used to produce variations of the same base configuration. However, such solutions cannot be used to validate or enforce configurations.

Roadmap

See Milestones and Issues.

Getting help

Contributing

Thanks for your interest in contributing!

  • Please review and agree to abide with the Code of Conduct before contributing.
  • See the Wiki for developer documentation.
  • Browse through the open issues