Run Plain Pod in Multi-Cluster

Run a MultiKueue scheduled Plain Pod.

Before you begin

  1. Check the MultiKueue installation guide on how to properly setup MultiKueue clusters.

  2. Follow steps in Run Plain Pods to learn how to enable and configure the pod integration.

Pods created on the manager cluster are automatically gated and receive live status updates from their remote counterparts

Feature state beta since Kueue v0.11.0

Example

Once the setup is complete you can test it by running the example below:

apiVersion: v1
kind: Pod
metadata:
  generateName: kueue-sleep-
  labels:
    kueue.x-k8s.io/queue-name: user-queue
spec:
  containers:
    - name: sleep
      image: busybox
      command:
        - sleep
      args:
        - 3s
      resources:
        requests:
          cpu: 3
  restartPolicy: OnFailure