Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

mirror-github.paniser.workers.dev/openshift/kueue-operator

Package Overview
Dependencies
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mirror-github.paniser.workers.dev/openshift/kueue-operator

Go Modules
Version
v0.0.0-20260610124822-82c9ada2f54d
Version published
Created
Source

Note: This project is under active development. During development, we use container images hosted on Quay.io:

  • Operator: quay.io/repository/redhat-user-workloads/kueue-operator-tenant/kueue-operator
  • Operand: quay.io/repository/redhat-user-workloads/kueue-operator-tenant/kueue-0-11

Kueue Operator

Go Report Card License

Kueue Operator provides the ability to deploy kueue using different configurations

Dependencies

The Kueue Operator needs CertManager installed to operate correctly

Releases

ko versionocp versionkueue versionk8s versiongolang
1.0.04.19 - 4.200.11.z1.321.23

Kueue releases around 6 times a year. For the latest Openshift version, we will take the latest version that was build with that underlying Kubernetes version.

See Kueue Release for more details on the Kueue release policy.

Deploy the Operator

Quick Development Operator

  • Login into podman and have a repository created.

  • Set OPERATOR_IMAGE to point to your repostory ie export OPERATOR_IMAGE=quay.io/testrepo/kueue-operator:test

  • Build operator image: make operator-build

  • Push operator image to repository: make operator-push

  • Set $KUEUE_IMAGE to point to kueue operand image

  • Run make deploy-cert-manager to deploy OperatorGroup and Subscription in cert-manager-operator namespace.

  • Run make deploy-ocp to deploy the operator using the $OPERATOR_IMAGE and $KUEUE_IMAGE for operator and operand, respectively.

  • Run make undeploy-ocp to remove operator from ocp cluster

Operator Bundle Development

  • Login into podman and have a repository created for the operator bundle.

  • Set BUNDLE_IMAGE to point to your repostory and a tag of choice

  • Run make bundle-generate to generate the bundle manifests

  • Run make bundle-build to build the bundle.Dockerfile.

  • Run make bundle-push to push the bundle image to your repository.

  • Run make deploy-cert-manager to deploy OperatorGroup and Subscription in cert-manager-operator namespace.

  • Set OPERATOR_NAMESPACE, i.e, "kueue-operator"

  • Run oc new-project $OPERATOR_NAMESPACE to create a namespace for the operaotr

  • Run operator-sdk run bundle --namespace $OPERATOR_NAMESPACE ${BUNDLE_IMAGE} to deploy operator to $OPERATOR_NAMESPACE

Local Development

  • make

  • oc apply -f deploy/

  • oc apply -f deploy/crd

  • hack/run-locally.sh

  • Optionally run oc apply -f deploy/examples/job.yaml

Sample CR

apiVersion: kueue.openshift.io/v1
kind: Kueue
metadata:
  labels:
    app.kubernetes.io/name: kueue-operator
    app.kubernetes.io/managed-by: kustomize
  name: cluster
  namespace: openshift-kueue-operator
spec:
  config:
    integrations:
      frameworks:
      - "batch/job" 

E2E Test

  • Set kubeconfig to point to a OCP cluster
  • Set OPERATOR_IMAGE to point to your operator image
  • Set KUEUE_IMAGE to point to your kueue image you want to test
  • make deploy-cert-manager test-e2e

Enable Webhooks on Opt-In Namespaces

The Kueue Operator implements an opt-in webhook mechanism to ensure targeted enforcement of Kueue policies. To enable the validating and mutating webhooks for a specific namespace, use the following label:

oc label namespace <namespace> kueue.openshift.io/managed=true

This label instructs the Kueue Operator that the namespace should be managed by its webhook admission controllers. As a result, any Kueue resources within that namespace will be properly validated and mutated.

Git Submodule Management

This project uses a git submodule to track the upstream Kueue repository. The submodule is located in the upstream/kueue directory and is used to synchronize manifests and configurations.

Updating the Git Submodule

To update the git submodule to the latest commit:

# Update the submodule to the latest commit on its tracked branch
git submodule update --remote upstream/kueue/src

# Commit the submodule update
git add upstream/kueue/src
git commit -m "Update upstream/kueue submodule"

Changing the Submodule Branch

To change which branch the submodule tracks:

# Navigate to the submodule directory
cd upstream/kueue/src

# Switch to the desired branch
git checkout <branch-name>

# Return to the main repository root
cd ../..

# Update the submodule configuration to track the new branch
git config -f .gitmodules submodule.upstream/kueue.branch <branch-name>

# Update the submodule to the latest commit on the new branch
git submodule update --remote upstream/kueue

# Commit the changes
git add .gitmodules upstream/kueue
git commit -m "Update submodule to track <branch-name> branch"

Tracking Main Branch

To configure the submodule to track the main branch:

# Set the submodule to track the main branch
git config -f .gitmodules submodule.upstream/kueue.branch main

# Update to the latest commit on main
git submodule update --remote upstream/kueue

# Commit the configuration change
git add .gitmodules upstream/kueue/src
git commit -m "Configure submodule to track main branch"

Synchronizing Manifests from Submodule

After updating the git submodule, you should synchronize the manifests using:

hack/sync_manifests.py --src-dir upstream/kueue/src/config/default/

This command processes the manifests from the submodule and prepares them for use by the operator.

RPM Lockfile Management

The project uses RPM lockfiles in the konflux/ directory to ensure reproducible hermetic builds. These lockfiles specify exact RPM versions and checksums for all dependencies across multiple architectures.

Updating RPM Lockfiles

To regenerate the RPM lockfile after modifying konflux/rpms.in.yaml:

podman run --rm \
  -v $HOME/.docker:/root/.docker \
  -v "$(pwd):/source:Z" \
  registry.ci.openshift.org/ocp/builder:rhel-9-enterprise-base-multi-openshift-4.19 bash -c "
cd /source && \
dnf install -y pip skopeo jq && \
pip install --user 'https://github.com/konflux-ci/rpm-lockfile-prototype/archive/refs/tags/\$(curl -s https://api.github.com/repos/konflux-ci/rpm-lockfile-prototype/releases/latest | jq -r .tag_name).tar.gz' && \
/root/.local/bin/rpm-lockfile-prototype -f Dockerfile.ci.kueue konflux/rpms.in.yaml
"

This command:

  • Uses the OpenShift enterprise base image with multi-architecture support
  • Downloads the latest rpm-lockfile-prototype tool
  • Generates konflux/rpms.lock.yaml with exact versions and checksums for all architectures (x86_64, aarch64, ppc64le, s390x)
  • Uses Dockerfile.ci.kueue as the base to determine available RPM repositories

After regenerating, commit both konflux/rpms.in.yaml and konflux/rpms.lock.yaml.

Manifest Synchronization

The hack/sync_manifests.py script is used to synchronize Kueue manifests from upstream releases or local development builds into the operator's bindata directory. This script handles the downloading, processing, and organization of Kueue manifests for operator deployment.

Usage

# Sync latest Kueue release
./hack/sync_manifests.py

# Sync specific version
./hack/sync_manifests.py 0.7.1

# Use local kustomize build
./hack/sync_manifests.py --src-dir path/to/kustomize/source

# Specify custom bindata directory
./hack/sync_manifests.py --bindata-dir custom/path

Features

  • Automatic Latest Version: Fetches the latest Kueue release from GitHub if no version is specified
  • Local Development: Supports building manifests from local kustomize sources using --src-dir
  • OpenShift Integration: Automatically updates namespaces from kueue-system to openshift-kueue-operator
  • Webhook Configuration: Updates webhook configurations for OpenShift namespace conventions
  • Image Parameterization: Replaces deployment images with ${IMAGE} placeholder for operator templating
  • Network Policy Labels: Adds required OpenShift labels for network policies
  • Organized Output: Separates manifests into appropriate files (CRDs, ClusterRoles, etc.) in the bindata directory

The script processes the following Kubernetes resources:

  • Custom Resource Definitions (CRDs)
  • ClusterRoles and ClusterRoleBindings
  • Roles and RoleBindings
  • Services and ServiceAccounts
  • Deployments
  • Webhook Configurations (Validating/Mutating)
  • API Services

FAQs

Package last updated on 10 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts