try running this script on the va box to see if it can connect to the outside world to the specific required destinations.
I believe the newest VA downloads the containers after the pairing. If you are missing containers or they don’t start, I have seen this because it can’t talk to the AWS ECR site(s).
#!/bin/bash
echo "Starting SailPoint VA connectivity test..."
echo "----------------------------------------------"
# Define the list of hosts to test
# NOTE: For wildcard domains, we pick a specific, known host (e.g., 'www.')
HOSTS_TO_TEST=(
# Flatcar (updates)
"www.flatcar-linux.org"
# SailPoint (core services)
"api.identitynow.com"
"www.sailpoint.com"
"va-access.infra.identitynow.com"
# Note: If you have a specific tenant URL like 'my-tenant.identitynow.com', add it here!
# LaunchDarkly (feature flags)
"app.launchdarkly.com"
# AWS S3 (general)
"s3.amazonaws.com"
# AWS ECR (container images)
"api.ecr.us-east-1.amazonaws.com"
"ecr.us-east-1.amazonaws.com"
"874540850173.dkr.ecr.us-east-1.amazonaws.com"
"229634586956.dkr.ecr.us-gov-west-1.amazonaws.com"
)
# Loop through each host and test it
for HOST in "${HOSTS_TO_TEST[@]}"; do
echo -n "Testing: $HOST ... "
# Use curl with -v (verbose) and -I (HEAD request)
# Redirect stderr (verbose output) and stdout (headers) to /dev/null
# We only care about the exit code.
if curl -v -I "https://{$HOST}" --connect-timeout 5 &> /dev/null; then
echo "✅ SUCCESS"
else
echo "❌ FAILURE"
echo " (Tip: Run 'curl -v https://{$HOST}' for detailed error info)"
fi
done
echo "----------------------------------------------"
echo "Test complete."```
the best way to debug is using the script what @ts_fpatterson has mentioned. But what i have seen is with partner tenant if you are trying to configure in your company laptop there are always restrictions when the VA will not be able to communicate to the outside world which it needs to be done for connectivity purpose. Try configuring VA from your Local Laptop and see if it is able to connect. You might need to reach out to you network team for firwall related issue