Skip to content
Merged
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
5 changes: 4 additions & 1 deletion hack/install-ate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,10 @@ deploy_atenet() {
run_ko apply -f manifests/ate-install/atenet-router.yaml
run_ko apply -f manifests/ate-install/atenet-dns.yaml
run_kubectl rollout status deployment/atenet-router -n ate-system --timeout=120s
run_kubectl rollout status deployment/atenet-dns -n ate-system --timeout=120s
# The Deployment in atenet-dns.yaml is named "dns"; every other resource in
# that file is "atenet-dns". Waiting on the filename rather than the actual
# Deployment made this step fail with NotFound on every successful deploy.
run_kubectl rollout status deployment/dns -n ate-system --timeout=120s
}

# get_actor_status echoes the actor's status enum (e.g. STATUS_SUSPENDED).
Expand Down
Loading