-
Notifications
You must be signed in to change notification settings - Fork 10
/
README.md.gotmpl
37 lines (29 loc) · 1.26 KB
/
README.md.gotmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Datree Admission Webhook
<p align="center">
<img src="https://github.com/datreeio/admission-webhook-datree/blob/main/internal/images/diagram.png" width="80%" />
</p>
# Overview
Datree offers cluster integration that allows you to validate your resources against your configured policy upon pushing them into a cluster, by using an admission webhook.
The webhook will catch **create**, **apply** and **edit** operations and initiate a policy check against the configs associated with each operation. If any misconfigurations are found, the webhook will reject the operation, and display a detailed output with instructions on how to resolve each misconfiguration.
👉🏻 For the full documentation click [here](https://hub.datree.io).
# Values
The following table lists the configurable parameters of the Datree chart and their default values.
{{ define "chart.valuesTableHtml" }}
<table>
<thead>
<th>Parameter</th>
<th>Description</th>
<th>Default</th>
</thead>
<tbody>
{{- range .Values }}
<tr>
<td>{{ .Key }}</td>
<td>{{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }}</td>
<td>{{ template "chart.valueDefaultColumnRender" . }}</td>
</tr>
{{- end }}
</tbody>
</table>
{{ end }}
{{ template "chart.valuesSectionHtml" . }}