nd002test/on-premise/servicemesh/istio-1.23.1/manifests/charts/istio-cni/templates/resourcequota.yaml

17 lines
404 B
YAML

{{- if .Values.cni.resourceQuotas.enabled }}
apiVersion: v1
kind: ResourceQuota
metadata:
name: {{ template "name" . }}-resource-quota
namespace: {{ .Release.Namespace }}
spec:
hard:
pods: {{ .Values.cni.resourceQuotas.pods | quote }}
scopeSelector:
matchExpressions:
- operator: In
scopeName: PriorityClass
values:
- system-node-critical
{{- end }}