https://github.com/cilium/cilium
Raw File
Tip revision: 33d1941c97201b4d7f4b4f6efc2d1c071f5c2cfe authored by André Martins on 09 May 2022, 22:54:12 UTC
Prepare for release v1.9.16
Tip revision: 33d1941
kind-config.yaml
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
  - role: control-plane
    image: kindest/node:v1.19.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/v1beta2
        kind: InitConfiguration
        nodeRegistration:
          taints: []
  - role: worker
    image: kindest/node:v1.19.1
networking:
  disableDefaultCNI: true
  podSubnet: "10.244.0.0/16"
  serviceSubnet: "10.245.0.0/16"
back to top