-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Charles-Edouard Brétéché <[email protected]>
- Loading branch information
1 parent
5a72331
commit 6096cc5
Showing
21 changed files
with
318 additions
and
359 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,6 @@ | |
"program": "${workspaceFolder}", | ||
"args": [ | ||
"sidecar-injector", | ||
"--local" | ||
], | ||
} | ||
] | ||
|
10 changes: 10 additions & 0 deletions
10
charts/kyverno-envoy-plugin/templates/_helpers/_deployment.tpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{{/* vim: set filetype=mustache: */}} | ||
|
||
{{- define "kyverno.deployment.replicas" -}} | ||
{{- if and (not (kindIs "invalid" .)) (not (kindIs "string" .)) -}} | ||
{{- if eq (int .) 0 -}} | ||
{{- fail "Kyverno does not support running with 0 replicas. Please provide a non-zero integer value." -}} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- . -}} | ||
{{- end -}} |
56 changes: 40 additions & 16 deletions
56
charts/kyverno-envoy-plugin/templates/sidecar-injector/certificates.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,56 @@ | ||
{{- if .Values.sidecarInjector.enabled -}} | ||
{{- if .Values.sidecarInjector.certificates.selfSigned -}} | ||
{{- $ca := genCA (printf "*.%s.svc" (include "kyverno.namespace" .)) 1024 -}} | ||
{{- $svcName := (printf "%s.%s.svc" (include "kyverno.sidecar-injector.name" .) (include "kyverno.namespace" .)) -}} | ||
{{- $cert := genSignedCert $svcName nil (list $svcName) 1024 $ca -}} | ||
{{- $tls := genSignedCert $svcName nil (list $svcName) 1024 $ca -}} | ||
{{- if .Values.sidecarInjector.certificates.selfSigned -}} | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: {{ template "kyverno.sidecar-injector.name" . }}.{{ template "kyverno.namespace" . }}.svc.kyverno-tls-ca | ||
name: {{ template "kyverno.sidecar-injector.name" . }} | ||
namespace: {{ template "kyverno.namespace" . }} | ||
labels: | ||
{{- include "kyverno.sidecar-injector.labels" . | nindent 4 }} | ||
annotations: | ||
self-signed-cert: "true" | ||
type: kubernetes.io/tls | ||
data: | ||
tls.key: {{ $ca.Key | b64enc }} | ||
tls.crt: {{ $ca.Cert | b64enc }} | ||
tls.key: {{ $tls.Key | b64enc }} | ||
tls.crt: {{ $tls.Cert | b64enc }} | ||
ca.crt: {{ $ca.Cert | b64enc }} | ||
{{- end }} | ||
--- | ||
apiVersion: v1 | ||
kind: Secret | ||
apiVersion: admissionregistration.k8s.io/v1 | ||
kind: MutatingWebhookConfiguration | ||
metadata: | ||
name: {{ template "kyverno.sidecar-injector.name" . }}.{{ template "kyverno.namespace" . }}.svc.kyverno-tls-pair | ||
namespace: {{ template "kyverno.namespace" . }} | ||
name: {{ template "kyverno.sidecar-injector.name" . }} | ||
labels: | ||
{{- include "kyverno.sidecar-injector.labels" . | nindent 4 }} | ||
annotations: | ||
self-signed-cert: "true" | ||
type: kubernetes.io/tls | ||
data: | ||
tls.key: {{ $cert.Key | b64enc }} | ||
tls.crt: {{ $cert.Cert | b64enc }} | ||
{{- end -}} | ||
webhooks: | ||
- name: kyverno-envoy-sidecar.kyverno-envoy-sidecar-injector.svc | ||
clientConfig: | ||
service: | ||
name: {{ template "kyverno.sidecar-injector.name" . }} | ||
namespace: {{ template "kyverno.namespace" . }} | ||
path: "/mutate" | ||
caBundle: {{ $ca.Cert | b64enc }} | ||
failurePolicy: Fail | ||
sideEffects: None | ||
admissionReviewVersions: | ||
- v1 | ||
rules: | ||
- apiGroups: | ||
- '' | ||
apiVersions: | ||
- v1 | ||
resources: | ||
- pods | ||
operations: | ||
- CREATE | ||
scope: '*' | ||
objectSelector: | ||
matchExpressions: | ||
- key: kyverno-envoy-sidecar/injection | ||
operator: In | ||
values: | ||
- enabled | ||
{{- end -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 0 additions & 35 deletions
35
charts/kyverno-envoy-plugin/templates/sidecar-injector/mutating-webhook-configuration.yaml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.