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

Merge branch 'main' of https://github.com/kyverno/kyverno into main

This commit is contained in:
vyankatesh 2021-05-11 11:13:36 +05:30
commit e6db5c7a59
6 changed files with 19 additions and 22 deletions

View file

@ -1,6 +1,6 @@
# Kyverno [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Kubernetes%20Native%20Policy%20Management.%20No%20new%20language%20required%21&url=https://github.com/kyverno/kyverno/&hashtags=kubernetes,devops) # Kyverno [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Kubernetes%20Native%20Policy%20Management.%20No%20new%20language%20required%21&url=https://github.com/kyverno/kyverno/&hashtags=kubernetes,devops)
**Kubernetes Native Policy Management** **Kubernetes Native Policy Management 🎉**
![build](https://github.com/kyverno/kyverno/workflows/build/badge.svg) ![build](https://github.com/kyverno/kyverno/workflows/build/badge.svg)
![prereleaser](https://github.com/kyverno/kyverno/workflows/prereleaser/badge.svg) ![prereleaser](https://github.com/kyverno/kyverno/workflows/prereleaser/badge.svg)
@ -11,30 +11,27 @@
<a href="https://kyverno.io" rel="kyverno.io">![logo](img/Kyverno_Horizontal.png)</a> <a href="https://kyverno.io" rel="kyverno.io">![logo](img/Kyverno_Horizontal.png)</a>
<p class="callout info" style="font-size: 2000%;"> <p class="callout info" style="font-size: 100%;">
Kyverno is a policy engine designed for Kubernetes. It can validate, mutate, and generate configurations using admission controls and background scans. Kyverno policies are Kubernetes resources and do not require learning a new language. Kyverno is designed to work nicely with tools you already use like kubectl, kustomize, and Git. Kyverno is a policy engine designed for Kubernetes. It can validate, mutate, and generate configurations using admission controls and background scans. Kyverno policies are Kubernetes resources and do not require learning a new language. Kyverno is designed to work nicely with tools you already use like kubectl, kustomize, and Git.
</p> </p>
## Documentation ## 📙 Documentation
Kyverno guides and reference documents are available at: <a href="https://kyverno.io/">kyverno.io</a>. Kyverno guides and reference documents are available at: <a href="https://kyverno.io/">kyverno.io</a>.
Try the [quick start guide](https://kyverno.io/docs/introduction/#quick-start) to install Kyverno and create your first policy. Try the [quick start guide](https://kyverno.io/docs/introduction/#quick-start) to install Kyverno and create your first policy.
## Contributing ## Contributing
Checkout out the Kyverno <a href="https://kyverno.io/community">Community</a> page for ways to get involved and details on joining our next community meeting. Checkout out the Kyverno <a href="https://kyverno.io/community">Community</a> page for ways to get involved and details on joining our next community meeting.
## Getting Help ## 🙋‍♂️ Getting Help
* For feature requests and bugs, file an [issue](https://github.com/kyverno/kyverno/issues).
* For discussions or questions, join the **#kyverno** channel on the [Kubernetes Slack](https://kubernetes.slack.com/)
* For community meeting access join the [mailing list](https://groups.google.com/g/kyverno).
* To get updates ⭐️ [star this repository](https://github.com/kyverno/kyverno/stargazers).
- For feature requests and bugs, file an [issue](https://github.com/kyverno/kyverno/issues).
- For discussions or questions, join the **#kyverno** channel on the [Kubernetes Slack](https://kubernetes.slack.com/) or the [mailing list](https://groups.google.com/g/kyverno).
## Spread The Love
We built Kyverno to make it easy to secure and manage Kubernetes configurations. If you like the project, [let us know](https://github.com/kyverno/kyverno/stargazers)!
[![Stargazers over time](https://starchart.cc/kyverno/kyverno.svg)](https://starchart.cc/kyverno/kyverno)

View file

@ -1,7 +1,7 @@
apiVersion: v1 apiVersion: v1
name: kyverno name: kyverno
version: v1.3.6-rc3 version: v1.3.6-rc4
appVersion: v1.3.6-rc3 appVersion: v1.3.6-rc4
icon: https://github.com/kyverno/kyverno/raw/main/img/logo.png icon: https://github.com/kyverno/kyverno/raw/main/img/logo.png
description: Kubernetes Native Policy Management description: Kubernetes Native Policy Management
keywords: keywords:

View file

@ -48,7 +48,7 @@ spec:
pattern: pattern:
spec: spec:
=(securityContext): =(securityContext):
=(supplementalGroups): ["null"] =(supplementalGroups): ">0"
- name: check-fsGroup - name: check-fsGroup
match: match:
resources: resources:

View file

@ -2441,7 +2441,7 @@ spec:
fieldPath: metadata.namespace fieldPath: metadata.namespace
- name: KYVERNO_SVC - name: KYVERNO_SVC
value: kyverno-svc value: kyverno-svc
image: ghcr.io/kyverno/kyverno:v1.3.6-rc3 image: ghcr.io/kyverno/kyverno:v1.3.6-rc4
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
livenessProbe: livenessProbe:
failureThreshold: 2 failureThreshold: 2
@ -2483,7 +2483,7 @@ spec:
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsNonRoot: true runAsNonRoot: true
initContainers: initContainers:
- image: ghcr.io/kyverno/kyvernopre:v1.3.6-rc3 - image: ghcr.io/kyverno/kyvernopre:v1.3.6-rc4
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
name: kyverno-pre name: kyverno-pre
resources: resources:

View file

@ -8,7 +8,7 @@ resources:
images: images:
- name: ghcr.io/kyverno/kyverno - name: ghcr.io/kyverno/kyverno
newName: ghcr.io/kyverno/kyverno newName: ghcr.io/kyverno/kyverno
newTag: v1.3.6-rc3 newTag: v1.3.6-rc4
- name: ghcr.io/kyverno/kyvernopre - name: ghcr.io/kyverno/kyvernopre
newName: ghcr.io/kyverno/kyvernopre newName: ghcr.io/kyverno/kyvernopre
newTag: v1.3.6-rc3 newTag: v1.3.6-rc4

View file

@ -2441,7 +2441,7 @@ spec:
fieldPath: metadata.namespace fieldPath: metadata.namespace
- name: KYVERNO_SVC - name: KYVERNO_SVC
value: kyverno-svc value: kyverno-svc
image: ghcr.io/kyverno/kyverno:v1.3.6-rc3 image: ghcr.io/kyverno/kyverno:v1.3.6-rc4
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
livenessProbe: livenessProbe:
failureThreshold: 2 failureThreshold: 2
@ -2483,7 +2483,7 @@ spec:
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsNonRoot: true runAsNonRoot: true
initContainers: initContainers:
- image: ghcr.io/kyverno/kyvernopre:v1.3.6-rc3 - image: ghcr.io/kyverno/kyvernopre:v1.3.6-rc4
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
name: kyverno-pre name: kyverno-pre
resources: resources: