Revision 39db9aa50ef0ec87db617aaa2c4df833f09b33e1 authored by Tom Hadlaw on 04 January 2024, 05:29:19 UTC, committed by Tom Hadlaw on 04 January 2024, 05:29:35 UTC
Signed-off-by: Tom Hadlaw <tom.hadlaw@isovalent.com>
1 parent 1d1449d
Raw File
kind-config.yaml
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
  - role: control-plane
    image: quay.io/cilium/kindest-node:v1.29.0-rc.1
    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
    image: quay.io/cilium/kindest-node:v1.29.0-rc.1
networking:
  disableDefaultCNI: true
  podSubnet: "10.244.0.0/16"
  serviceSubnet: "10.245.0.0/16"
back to top