From 33f637ab949759687265492bc175ad4a561d042a Mon Sep 17 00:00:00 2001 From: Hao Xin Date: Tue, 22 Feb 2022 16:45:57 +0800 Subject: [PATCH] Fix Helm chart Values path --- helm-chart/flink-operator/templates/flink-operator.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/helm-chart/flink-operator/templates/flink-operator.yaml b/helm-chart/flink-operator/templates/flink-operator.yaml index 6001a634..00234d68 100644 --- a/helm-chart/flink-operator/templates/flink-operator.yaml +++ b/helm-chart/flink-operator/templates/flink-operator.yaml @@ -75,11 +75,11 @@ spec: protocol: TCP resources: requests: - cpu: {{ .Values.requests.cpu }} - memory: {{ .Values.requests.memory }} + cpu: {{ .Values.resources.requests.cpu }} + memory: {{ .Values.resources.requests.memory }} limits: - cpu: {{ .Values.limits.cpu }} - memory: {{ .Values.limits.memory }} + cpu: {{ .Values.resources.limits.cpu }} + memory: {{ .Values.resources.limits.memory }} securityContext: allowPrivilegeEscalation: false volumeMounts: