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

Remove abstraction that doesn't work anyway (#3209)

Signed-off-by: Trey Dockendorf <tdockendorf@osc.edu>

Co-authored-by: Trey Dockendorf <tdockendorf@osc.edu>
This commit is contained in:
Adam Kosmin 2022-02-15 10:01:40 -05:00 committed by GitHub
parent 5a541567de
commit 5c91bb8217
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 31 deletions

View file

@ -92,6 +92,7 @@ The following table lists the configurable parameters of the kyverno chart and t
| `nameOverride` | override the name of the chart | `nil` |
| `namespace` | namespace the chart deploy to | `nil` |
| `networkPolicy.enabled` | when true, use a NetworkPolicy to grant access to the webhook. | `false` |
| `networkPolicy.ingressFrom` | A list of valid from selectors. | `[]` |
| `nodeAffinity` | node affinities. Empty by default. Can be added for nodeAffinities. | `nil` |
| `nodeSelector` | node labels for pod assignment | `{}` |
| `podAffinity` | pod affinities. Empty by default. Can be added for podAffinities. | `nil` |

View file

@ -12,34 +12,11 @@ spec:
app: kyverno
policyTypes:
- Ingress
{{- if or .Values.networkPolicy.namespaceExpressions .Values.networkPolicy.namespaceLabels .Values.networkPolicy.podExpressions .Values.networkPolicy.podLabels }}
{{- if .Values.networkPolicy.ingressFrom }}
ingress:
- from:
{{- if or .Values.networkPolicy.namespaceExpressions .Values.networkPolicy.namespaceLabels }}
- namespaceSelector:
{{- with .Values.networkPolicy.namespaceExpressions }}
matchExpressions:
{{- toYaml . | nindent 10 }}
{{- end }}
{{- with .Values.networkPolicy.namespaceLabels }}
matchLabels:
{{- range $key, $value := . }}
{{ $key | quote }}: {{ $value | quote }}
{{- end }}
{{- end }}
{{- end }}
{{- if or .Values.networkPolicy.podExpressions .Values.networkPolicy.podLabels }}
podSelector:
{{- with .Values.networkPolicy.podExpressions }}
matchExpressions:
{{- toYaml . | nindent 10 }}
{{- end }}
{{- with .Values.networkPolicy.podLabels }}
matchLabels:
{{- range $key, $value := . }}
{{ $key | quote }}: {{ $value | quote }}
{{- end }}
{{- end }}
{{- with .Values.networkPolicy.ingressFrom }}
{{- toYaml . | nindent 4 }}
{{- end }}
ports:
- protocol: TCP
@ -50,6 +27,7 @@ spec:
port: {{ .Values.metricsService.port }}
{{- end }}
{{- else }}
ingress: []
ingress:
- {}
{{- end }}
{{- end }}

View file

@ -262,7 +262,5 @@ installCRDs: true
# policies in a default-deny setup.
networkPolicy:
enabled: false
namespaceExpressions: []
namespaceLabels: {}
podExpressions: []
podLabels: {}
# A list of valid from selectors according to https://kubernetes.io/docs/concepts/services-networking/network-policies
ingressFrom: []