Merge pull request #10498 from stevenhorsman/update-create-container-timeout-log

tests: k8s: Update image pull timeout error
This commit is contained in:
Steve Horsman 2024-11-08 10:47:39 +00:00 committed by GitHub
commit 1f728eb906
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -171,10 +171,10 @@ setup() {
echo "Pod $pod_config file:" echo "Pod $pod_config file:"
cat $pod_config cat $pod_config
# The pod should be failed because the default timeout of CreateContainerRequest is 60s # The pod should be failed because the image is too large to be pulled in the timeout
assert_pod_fail "$pod_config" assert_pod_fail "$pod_config"
assert_logs_contain "$node" kata "$node_start_time" \ assert_logs_contain "$node" kata "$node_start_time" 'createContainer failed'
'CreateContainerRequest timed out' assert_logs_contain "$node" kata "$node_start_time" 'timeout'
} }
@test "Test we can pull a large image inside the guest with large createcontainer timeout" { @test "Test we can pull a large image inside the guest with large createcontainer timeout" {