diff --git a/charts/selenium-grid/templates/_helpers.tpl b/charts/selenium-grid/templates/_helpers.tpl index 9949ce4936..e893bd23a8 100644 --- a/charts/selenium-grid/templates/_helpers.tpl +++ b/charts/selenium-grid/templates/_helpers.tpl @@ -306,10 +306,16 @@ template: - name: "pre-puller-{{ .name }}" image: {{ printf "%s/%s:%s" $nodeImageRegistry .node.imageName $nodeImageTag }} command: ["bash", "-c", "'true'"] + {{- with .node.resources }} + resources: {{- toYaml . | nindent 10 }} + {{- end }} {{- if $.Values.videoRecorder.enabled }} - name: "pre-puller-{{ $.Values.videoRecorder.name }}" image: {{ printf "%s/%s:%s" $videoImageRegistry $.Values.videoRecorder.imageName $videoImageTag }} command: ["bash", "-c", "'true'"] + {{- with .node.resources }} + resources: {{- toYaml . | nindent 10 }} + {{- end }} {{- end }} {{- with .node.initContainers }} {{- toYaml . | nindent 6 }}