Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions components.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ dashboard:
hub:
github: tektoncd/hub
version: v1.23.4
scheduler:
github: konflux-ci/tekton-kueue
version: v0.1.0
manual-approval-gate:
github: openshift-pipelines/manual-approval-gate
version: v0.7.0
Expand Down
51 changes: 51 additions & 0 deletions config/base/300-operator_v1alpha1_scheduler_crd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Copyright 2025 The Tekton Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: tektonschedulers.operator.tekton.dev
labels:
version: "devel"
operator.tekton.dev/release: "devel"
spec:
group: operator.tekton.dev
names:
kind: TektonScheduler
listKind: TektonSchedulerList
plural: tektonschedulers
singular: tektonscheduler
preserveUnknownFields: false
scope: Cluster
versions:
- name: v1alpha1
served: true
storage: true
subresources:
status: {}
additionalPrinterColumns:
- jsonPath: .status.version
name: Version
type: string
- jsonPath: .status.conditions[?(@.type=="Ready")].status
name: Ready
type: string
- jsonPath: .status.conditions[?(@.type=="Ready")].message
name: Reason
type: string
schema:
openAPIV3Schema:
type: object
description: Schema for the tektonschedulers API
x-kubernetes-preserve-unknown-fields: true
1 change: 1 addition & 0 deletions config/base/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ resources:
- 300-operator_v1alpha1_hub_crd.yaml
- 300-operator_v1alpha1_manualapprovalgate_crd.yaml
- 300-operator_v1alpha1_pruner_crd.yaml
- 300-operator_v1alpha1_scheduler_crd.yaml
- config-logging.yaml
- config-observability.yaml
- tekton-config-defaults.yaml
Expand Down
Loading
Loading