https://github.com/cilium/cilium
Raw File
Tip revision: c079a04d1b67b71217ec6ac0dadf9222a8a480ac authored by Julian Wiedmann on 11 July 2024, 12:45:10 UTC
ci/ipsec: add missing config for patch-upgrade test with 6.6 kernel
Tip revision: c079a04
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