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

https://github.com/trstringer/kubernetes-validating-webhook

Example showing how to implement a basic Kubernetes validating webhook
https://github.com/trstringer/kubernetes-validating-webhook

Last synced: 10 months ago
JSON representation

Example showing how to implement a basic Kubernetes validating webhook

Awesome Lists containing this project

README

          

# Kubernetes Validating Webhook example

This shows a basic implementation of a validating webhook.

## Setup

*Note: This relies on TLS certificates to function correctly. Soon that will be added to this repo for a full end-to-end working example.*

This example utilizes a local kind cluster.

```bash
$ make build
$ make build-image-kind
$ make push-kind
$ make deploy
```

## Cleanup

```bash
$ make cleanup
```