Revision 479c7a49756856fd72173ddc923b6c8b810f8701 authored by Cilium Imagebot on 07 July 2024, 04:19:34 UTC, committed by Cilium Imagebot on 07 July 2024, 04:29:56 UTC
Signed-off-by: Cilium Imagebot <noreply@cilium.io>
1 parent 42b26f5
Raw File
kind-config.yaml.tmpl
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
  - role: control-plane
    kubeadmConfigPatches:
      # To make sure that there is no taint for master node.
      # Otherwise additional worker node might be required for conformance testing.
      - |
        apiVersion: kubeadm.k8s.io/v1beta3
        kind: InitConfiguration
        nodeRegistration:
          taints: []
  - role: worker
  - role: worker
networking:
  disableDefaultCNI: true
  ipFamily: ${IPFAMILY}
  podSubnet: ${PODCIDR}
  serviceSubnet: ${SVCCIDR}
  kubeProxyMode: ${KUBEPROXYMODE}
back to top