Skip to content

Update _helpers.tpl to adress missing resource limits in pre-puller init containers for firefox,edge,... #2399

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions charts/selenium-grid/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
Loading