An open API service indexing awesome lists of open source software.

https://github.com/AverageMarcus/common-admission-policies

A collection of common ValidatingAdmissionPolicies to help enforce best practices within Kubernetes clusters
https://github.com/AverageMarcus/common-admission-policies

Last synced: 10 months ago
JSON representation

A collection of common ValidatingAdmissionPolicies to help enforce best practices within Kubernetes clusters

Awesome Lists containing this project

README

          

# common-admission-policies

A collection of common ValidatingAdmissionPolicies & MutatingAdmissionPolicies to help enforce best practices within Kubernetes clusters

## Installation

All these policies make use of Kustomize and can either be installed all together or individually.

### Installing all policies

```sh
kubectl kustomize ./policies/ | kubectl apply -f -
```

### Installing individual policies

Example with the [block-latest-tag](./policies/block-latest-tag/) policy:

```sh
kubectl kustomize ./policies/block-latest-tag/ | kubectl apply -f -
```