Hello, I'm trying to use Cloud Run Job to :
I configured Serveless VPC Access with all traffic throught the VPC (to go out via my Cloud Nat). My Serveless VPC Access has been created in my service project. To be sure I'm not block by the Firewall I allowed all traffics in egress/ingress without success.
From my cloud run job, I'm not able to :
My Cloud nat, shared VPC work very well, I already have a few GKE cluster.
All suggestions is welcome.
Hello,
I resolved my issue. Ping is just no supported...
You need theses following firewall rules :
gcloud compute firewall-rules create vpc-connector-requests \
--allow tcp,udp,icmp \
--direction=INGRESS \
--source-tags vpc-connector \
--network=NETWORK_NAME \
--project=PROJECT_ID
gcloud compute firewall-rules create serverless-to-vpc-connector \
--allow tcp:667,udp:665-666,icmp \
--source-ranges=35.199.224.0/19 \
--direction=INGRESS \
--target-tags vpc-connector \
--network=NETWORK_NAME \
--project=PROJECT_ID