sigs.k8s.io/cluster-api-provider-azure@v1.14.3/templates/addons/cluster-api-helm/calico-ipv6.yaml (about)

     1  apiVersion: addons.cluster.x-k8s.io/v1alpha1
     2  kind: HelmChartProxy
     3  metadata:
     4    name: calico-ipv6
     5  spec:
     6    clusterSelector:
     7      matchLabels:
     8        cni: calico-ipv6
     9    repoURL: https://docs.tigera.io/calico/charts
    10    chartName: tigera-operator
    11    version: ${CALICO_VERSION}
    12    releaseName: projectcalico
    13    namespace: tigera-operator
    14    valuesTemplate: |
    15      installation:
    16        cni:
    17          type: Calico
    18          ipam:
    19            type: HostLocal
    20        calicoNetwork:
    21          bgp: Disabled
    22          mtu: 1350
    23          ipPools:{{range $i, $cidr := .Cluster.spec.clusterNetwork.pods.cidrBlocks }}
    24          - blockSize: 122
    25            cidr: {{ $cidr }}
    26            encapsulation: None
    27            natOutgoing: Enabled
    28            nodeSelector: all(){{end}}
    29        registry: mcr.microsoft.com/oss
    30      # Image and registry configuration for the tigera/operator pod.
    31      tigeraOperator:
    32        image: tigera/operator
    33        registry: mcr.microsoft.com/oss
    34      calicoctl:
    35        image: mcr.microsoft.com/oss/calico/ctl