sigs.k8s.io/kueue@v0.6.2/hack/kind-cluster.yaml (about)

     1  kind: Cluster
     2  apiVersion: kind.x-k8s.io/v1alpha4
     3  nodes:
     4  - role: control-plane
     5    kubeadmConfigPatches:
     6    - |
     7      kind: ClusterConfiguration
     8      apiVersion: kubeadm.k8s.io/v1beta3
     9      scheduler:
    10        extraArgs:
    11          v: "2"
    12      controllerManager:
    13        extraArgs:
    14          v: "2"
    15      apiServer:
    16        extraArgs:
    17          enable-aggregator-routing: "true"
    18          v: "2"
    19  - role: worker
    20    labels:
    21      instance-type: on-demand
    22    kubeadmConfigPatches:
    23    - |
    24      kind: InitConfiguration
    25      nodeRegistration:
    26        kubeletExtraArgs:
    27          v: "2"
    28  - role: worker
    29    labels:
    30      instance-type: spot
    31    kubeadmConfigPatches:
    32    - |
    33      kind: InitConfiguration
    34      nodeRegistration:
    35        kubeletExtraArgs:
    36          v: "2"