sigs.k8s.io/cluster-api-provider-azure@v1.14.3/templates/addons/cluster-api-helm/calico-dual-stack.yaml (about) 1 apiVersion: addons.cluster.x-k8s.io/v1alpha1 2 kind: HelmChartProxy 3 metadata: 4 name: calico-dual-stack 5 spec: 6 clusterSelector: 7 matchLabels: 8 cni: calico-dual-stack 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: 24 - blockSize: 26 25 cidr: {{ index .Cluster.spec.clusterNetwork.pods.cidrBlocks 0 }} 26 encapsulation: None 27 natOutgoing: Enabled 28 nodeSelector: all() 29 - blockSize: 122 30 cidr: {{ index .Cluster.spec.clusterNetwork.pods.cidrBlocks 1 }} 31 encapsulation: None 32 natOutgoing: Enabled 33 nodeSelector: all() 34 registry: mcr.microsoft.com/oss 35 # Image and registry configuration for the tigera/operator pod. 36 tigeraOperator: 37 image: tigera/operator 38 registry: mcr.microsoft.com/oss 39 calicoctl: 40 image: mcr.microsoft.com/oss/calico/ctl