Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions tasks/util/registry.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from os import makedirs
from os.path import exists, join
from subprocess import CalledProcessError, run
from tasks.util.containerd import wait_for_containerd_socket
from tasks.util.docker import is_ctr_running
from tasks.util.env import (
CONF_FILES_DIR,
Expand Down Expand Up @@ -39,6 +40,8 @@ def start(debug=False, clean=False):
# Docker Registry Config
# ----------

wait_for_containerd_socket()

if clean and is_ctr_running(REGISTRY_CTR_NAME):
if debug:
print(f"WARNING: stopping registry container: {REGISTRY_CTR_NAME}")
Expand Down
2 changes: 1 addition & 1 deletion tests/knative_chaining_guest_pull.bats
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ setup() {
load utils/helpers.sh

# Longer timeout for chaining tests
export SC2_TEST_TIMEOUT=180
export SC2_TEST_TIMEOUT=240
}

teardown() {
Expand Down