-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
[🐛 Bug]: ImagePullBackOff using selenium-grid helm chart #2057
Comments
@xdoncalvox, thank you for creating this issue. We will troubleshoot it as soon as we can. Info for maintainersTriage this issue by using labels.
If information is missing, add a helpful comment and then
If the issue is a question, add the
If the issue is valid but there is no time to troubleshoot it, consider adding the
If the issue requires changes or fixes from an external project (e.g., ChromeDriver, GeckoDriver, MSEdgeDriver, W3C),
add the applicable
After troubleshooting the issue, please add the Thank you! |
Hi @xdoncalvox, recently there was a breaking change in the image name via PR #2030. Please read #2039 (comment), or #2035 (comment) or README for more details. |
Thank you @VietND96 for the reply. I have now readed the comments and the readme. |
Ah yes, I guess your situation would be that you took the chart values.yaml and modified something there, then you provide it via chart/values.yaml ( global:
seleniumGrid:
imageRegistry: selenium # default global is enabled your_values.yaml (previous version) chromeNode:
imageName: selenium/node-chrome When deploying the your old values on top of new chart version, merge strategy would render the image {{- $imageTag := default .Values.global.seleniumGrid.imageTag .Values.hub.imageTag }}
{{- $imageRegistry := default .Values.global.seleniumGrid.imageRegistry .Values.hub.imageRegistry }}
image: {{ printf "%s/%s:%s" $imageRegistry .Values.hub.imageName $imageTag }} |
Thank you for the quick reply |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
What happened?
After upgrading my helm chart from 0.25.1 to 0.26.1, selenium-hub and browser-node's pod started to show ImagePullBackOff, looking into the deployment for each of them I found the image field for the pod template now shows
selenium/selenium/hub
instead ofselenium/hub
(as previously) causing the mentioned error.Command used to start Selenium Grid with Docker (or Kubernetes)
--- apiVersion: helm.toolkit.fluxcd.io/v2beta1 kind: HelmRelease metadata: name: selenium-grid namespace: qa1 spec: chart: spec: chart: selenium-grid version: "0.26.1" sourceRef: kind: HelmRepository name: docker-selenium interval: 1h0m0s
Relevant log output
Operating System
kubernetes
Docker Selenium version (tag or chart version)
0.26.1
The text was updated successfully, but these errors were encountered: