Set up the network
Create a VPC
Go To: VPC networks > VPC networks > Create VPC network. (link)
Enter the following values:
Name: care-vpc
Maximum Transmission unit (MTU): 1460
VPC network ULA internal IPv6 range: Disabled
Subnet creation mode: Custom
Create a new subnet using following values:
Name: cluster-snet
Region: asia-south1
P stack type: IPv4 (single-stack)
IPv4 range: 10.0.0.0/16
Private Google Access: On
Flow logs: Off
Firewall rules: Leave default
Dynamic routing mode: Regional
Equivalent commands:
gcloud compute networks create care-vpc --project=$PROJECT --subnet-mode=custom --mtu=1460 --bgp-routing-mode=regional
gcloud compute networks subnets create cluster-snet --project=$PROJRCT --range=10.0.0.0/16 --stack-type=IPV4_ONLY --network=care-vpc --region=asia-south1 --enable-private-ip-google-access
Reserve a static IP address
Go To: VPC Networks > IP Addresses > RESERVE EXTERNAL STATIC IP ADDRESS (link)
Enter the following values:
Name: pip-care
Network Service Tier: Premium
IP version: IPv4
Type: Regional
Region: asia-south1 (Mumbai)
Attached to: None
Note down the IP address
Equivalent commands:
gcloud compute addresses create pip-care --project=$PROJECT --region=asia-south1
Last updated
Was this helpful?