Set up dual-stack (IPv4 and IPv6) (original) (raw)

Dual-stack subnets let your Cloud Run resources send IPv4 and IPv6 traffic to a VPC network with Direct VPC egress. You can change an existing IPv4 only (single-stack) subnet to a dual-stack subnet.

Subnet types

VPC networks support the followingCompute Engine subnet types:

Dual-stack limitations

Before you change the stack type on an existing Cloud Run resource, consider the following limitations:

Before you begin

Be sure that the Cloud Run service agenthas the Compute Public IP Admin role (roles/compute.publicIpAdmin)to use the subnet with external IPv6.

Add a dual-stack subnet on a resource

Dual-stack subnets have both IPv4 and IPv6 address ranges.

To add a dual-stack subnet on a Cloud Run resource, do the following:

Console

  1. In the Google Cloud console:
    1. Enable the Compute Engine API:
      Enable the Compute Engine API
    2. Go to the VPC networks page:
      Go to VPC networks
  2. Click Create VPC network if you are creating a new custom-mode network. If you are using an existing VPC network, click the name of the VPC network to show its VPC network details page.
  3. If you are creating a new network or converting an existing one, enter the name and be sure that the Subnet creation mode is set to Custom, then selectConfigure a ULA internal IPv6 range for this VPC Network.
  4. From the Subnets tab, click Add subnet. In the panel that appears:
    1. Provide a Name.
    2. Select a Region.
    3. For IP stack type, select IPv4 and IPv6 (dual-stack).
    4. Enter an IPv4 range. This is theprimary IPv4 range for the subnet.
    5. Select the IPv6 access type.
      If the Internal option is not available and you need it, check that an internal IPv6 range is assigned on the network.
    6. Click Add.
  5. Deploy a Cloud Run service,execute a job, ordeploy a worker pool on the dual-stack subnet that you created. As you enter the needed resource details, select the new IPv6 address range by following these steps:
    1. Click Container(s), Volumes, Networking, Security and select theNetworking tab.
    2. Click Connect to a VPC for outbound traffic and then Send traffic directly to a VPC.
    3. Select the Network that you created in the previous step.
    4. Click the Subnet field to select the newly created IPv6 address range.
      The resource is automatically provisioned with the subnet's stack type.

gcloud

  1. To create a custom-mode network that supports dual-stack subnets, run thegcloud compute networks create command.
    To configure internal IPv6 ranges on any subnets in this network, use the--enable-ula-internal-ipv6 flag. This option assigns a /48 ULA prefix from within the fd20::/20 range used by Google Cloud for internal IPv6 subnet ranges.
    gcloud compute networks create NETWORK \
    --subnet-mode=custom \
    --enable-ula-internal-ipv6
    Replace NETWORK with the name of the VPC network that will contain the new subnet.
  2. To convert to or update a custom-mode network so that it supports dual-stack subnets, run the following command:
    gcloud compute networks update NETWORK \
    --subnet-mode=custom \
    --enable-ula-internal-ipv6
    Replace NETWORK with the name of the VPC network that will contain the new subnet.
  3. To create a dual-stack subnet with an IPv6 range, run thesubnets create commandusing the dual-stack settings:
    gcloud compute networks subnets create SUBNET \
    --network=NETWORK \
    --range=PRIMARY_IPv4_RANGE \
    --stack-type=IPV4_IPV6 \
    --ipv6-access-type=IPV6_ACCESS_TYPE \
    --region=REGION
    Replace the following:
    • SUBNET: a name for the new subnet.
    • NETWORK: the name of the VPC network that will contain the new subnet.
    • PRIMARY_IPv4_RANGE: the primary IPv4 range for the new subnet, in CIDR notation. For more information, see IPv4 subnet ranges.
    • IPV6_ACCESS_TYPE: the IPv6 access type for the new subnet, either internal or external.
    • REGION: the Google Cloud region that the new subnet will be created in.
  4. Deploy a Cloud Run service,execute a job, ordeploy a worker pool on the dual-stack subnet that you created. The resource is automatically provisioned with the subnet's stack type.

YAML

  1. If you are creating a new service, skip this step. If you are updating an existing service, download its YAML configuration:
    gcloud run services describe SERVICE --format export > service.yaml
  2. Update the following attributes:
    apiVersion: serving.knative.dev/v1
    kind: Service
    metadata:
    name: SERVICE_NAME
    labels:
    cloud.googleapis.com/location: REGION
    spec:
    template:
    metadata:
    annotations:
    run.googleapis.com/network-interfaces: '[{"network":"NETWORK","subnetwork":"SUBNET","tags":"NETWORK_TAG_NAMES"}]'
    run.googleapis.com/vpc-access-egress: EGRESS_SETTING
    spec:
    containers:
    - image: IMAGE

Replace:

  1. Create or update the service using the following command:
    gcloud run services replace service.yaml

Terraform

To learn how to apply or remove a Terraform configuration, seeBasic Terraform commands.

  1. Add the following to your main.tf file:

Optionally, make your service public if you want to allow unauthenticated access to the service.

Change a subnet from single-stack to dual-stack

To add an IPv6 subnet range to an existing IPv4-only subnet in a custom-mode VPC network, see Change a subnet's stack type to dual-stack. Then, deploy the Cloud Run service,execute the job, or deploy the worker poolon the dual-stack subnet.

Change a subnet from dual-stack to single-stack

To change a resource's dual-stack subnet to a single-stack subnet, seeChange a dual-stack subnet to IPv4 only. Then, deploy the Cloud Run service,execute the job, or deploy the worker poolon the dual-stack subnet.

Verify the network and subnet

To check that your resource is on the VPC network, run the following command:

gcloud run services describe SERVICE_NAME --region=REGION

Replace REGION with the Google Cloud region that the new subnet was created in.

The following example output shows your network and subnet:

  VPC Access:
    Network:        example-network
    Subnet:         example-subnet
    Egress:         private-ranges-only