Skip to content
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

chore: Update k8s image pull error message to include a possible platform mismatch #2209

Merged
merged 3 commits into from
Feb 23, 2024
Merged
Changes from 2 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
Original file line number Diff line number Diff line change
Expand Up @@ -1851,7 +1851,8 @@ func (manager *KubernetesManager) waitForPodAvailability(ctx context.Context, na
return stacktrace.NewError(
"Container '%v' using image '%v' in pod '%v' in namespace '%v' is stuck in state '%v'. This likely means:\n"+
"1) There's a typo in either the image name or the tag name\n"+
"2) The image isn't accessible to Kubernetes (e.g. it's a local image, or it's in a private image registry that Kubernetes can't access)",
"2) The image isn't accessible to Kubernetes (e.g. it's a local image, or it's in a private image registry that Kubernetes can't access)\n"+
"3) The image's platform might not match",
laurentluce marked this conversation as resolved.
Show resolved Hide resolved
containerName,
containerStatus.Image,
pod.Name,
Expand Down
Loading