Hi @Pierre_Gerbelot,
Interesting. I keep getting the error. Could it be something in my setup? It’s not the first time I see that error, in this topic Environment Preview Cloning Error I got the same error.
Right now that error is stopping me from having preview environments. Since I have my services communicate via HOST_INTERNAL and on top of that, one of my services is private, so the only way to communicate is internally via HOST_INTERNAL. What I want end up doing is this:
#!/bin/sh
set -e
APP1_URL=$(qovery application env list -n "app1" --show-values | grep "HOST_INTERNAL" | grep "BUILT_IN" | grep "app1" | awk '{print $10}' 2>&1)
APP2_URL=$(qovery application env list -n "app2" --show-values | grep "HOST_INTERNAL" | grep "BUILT_IN" | grep "app2" | awk '{print $10}' 2>&1)
APP3_URL=$(qovery application env list -n "app3" --show-values | grep "HOST_INTERNAL" | grep "BUILT_IN" | grep "app3" | awk '{print $10}' 2>&1)
echo '{
"APP1_URL": {
"sensitive": false,
"value": "'$APP1_URL'"
},
"APP2_URL": {
"sensitive": false,
"value": "'$APP2_URL'"
},
"APP3_URL": {
"sensitive": false,
"value": "'$APP3_URL'"
}
}' > /qovery-output/qovery-output.json
echo "shell script executed successfully with output values - check out your Qovery environment variables :)"
But I can’t get past the error.