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:
parent
5a541567de
commit
5c91bb8217
3 changed files with 8 additions and 31 deletions
|
@ -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` |
|
||||
|
|
|
@ -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 }}
|
||||
|
|
|
@ -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: []
|
||||
|
|
Loading…
Add table
Reference in a new issue