https://github.com/cilium/cilium
Raw File
Tip revision: 1bc9e5148cdb7dba89b767cf9d1b8420743b75a4 authored by Joe Stringer on 02 May 2024, 20:07:36 UTC
Prepare for release v1.16.0-pre.2
Tip revision: 1bc9e51
kind-config.yaml
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
networking:
  disableDefaultCNI: true
  podSubnet: "10.244.0.0/16"
  serviceSubnet: "10.245.0.0/16"
back to top