Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -153,14 +153,14 @@ policy-test-cleanup:
@while [ $({{ _kubectl }} get ns --selector='linkerd-policy-test' -o json |jq '.items | length') != "0" ]; do sleep 1 ; done

policy-test-deps-pull:
docker pull -q docker.io/bitnami/kubectl:latest
docker pull -q docker.io/alpine/kubectl:latest
docker pull -q docker.io/curlimages/curl:latest
docker pull -q ghcr.io/olix0r/hokay:latest

# Load all images into the test cluster.
policy-test-deps-load: _k3d-init policy-test-deps-pull
for i in {1..3} ; do {{ _k3d-load }} \
bitnami/kubectl:latest \
alpine/kubectl:latest \
curlimages/curl:latest \
fortio/fortio:latest \
ghcr.io/olix0r/hokay:latest && exit || sleep 1 ; done
Expand Down
2 changes: 1 addition & 1 deletion policy-test/src/curl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ impl Runner {
service_account: Some("curl".to_string()),
init_containers: Some(vec![k8s::api::core::v1::Container {
name: "wait-for-web".to_string(),
image: Some("docker.io/bitnami/kubectl:latest".to_string()),
image: Some("docker.io/alpine/kubectl:latest".to_string()),
// In CI, we can hit failures where the watch isn't updated
// after the configmap is deleted, even with a long timeout.
// Instead, we use a relatively short timeout and retry the
Expand Down
Loading