You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
836 B
36 lines
836 B
---
|
|
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: experiments.kubeflow.org
|
|
spec:
|
|
group: kubeflow.org
|
|
scope: Namespaced
|
|
versions:
|
|
- name: v1beta1
|
|
served: true
|
|
storage: true
|
|
additionalPrinterColumns:
|
|
- name: Type
|
|
type: string
|
|
jsonPath: .status.conditions[-1:].type
|
|
- name: Status
|
|
type: string
|
|
jsonPath: .status.conditions[-1:].status
|
|
- name: Age
|
|
type: date
|
|
jsonPath: .metadata.creationTimestamp
|
|
subresources:
|
|
status: {}
|
|
schema:
|
|
openAPIV3Schema:
|
|
type: object
|
|
x-kubernetes-preserve-unknown-fields: true
|
|
names:
|
|
kind: Experiment
|
|
singular: experiment
|
|
plural: experiments
|
|
categories:
|
|
- all
|
|
- kubeflow
|
|
- katib
|
|
|