sigs.k8s.io/cluster-api-provider-azure@v1.14.3/templates/flavors/ipv6/patches/ipv6.yaml (about)

     1  ---
     2  apiVersion: cluster.x-k8s.io/v1beta1
     3  kind: Cluster
     4  metadata:
     5    name: ${CLUSTER_NAME}
     6  spec:
     7    clusterNetwork:
     8      pods:
     9        # this is a part of the virtual network IP range.
    10        # See https://docs.projectcalico.org/reference/public-cloud/azure
    11        cidrBlocks: ["2001:1234:5678:9a40::/58"]
    12      services:
    13        cidrBlocks: ["fd00::/108"]
    14  ---
    15  apiVersion: infrastructure.cluster.x-k8s.io/v1beta1
    16  kind: AzureCluster
    17  metadata:
    18    name: ${CLUSTER_NAME}
    19  spec:
    20    networkSpec:
    21      vnet:
    22        cidrBlocks:
    23          - "10.0.0.0/8"
    24          - "2001:1234:5678:9a00::/56"
    25      subnets:
    26        - name: control-plane-subnet
    27          role: control-plane
    28          cidrBlocks:
    29            - "10.0.0.0/16"
    30            - "2001:1234:5678:9abc::/64"
    31        - name: node-subnet
    32          role: node
    33          cidrBlocks:
    34            - "10.1.0.0/16"
    35            - "2001:1234:5678:9abd::/64"