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.
51 lines
1.1 KiB
51 lines
1.1 KiB
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: poddefaults.kubeflow.org
|
|
spec:
|
|
group: kubeflow.org
|
|
names:
|
|
kind: PodDefault
|
|
plural: poddefaults
|
|
singular: poddefault
|
|
scope: Namespaced
|
|
version: v1alpha1
|
|
validation:
|
|
openAPIV3Schema:
|
|
properties:
|
|
apiVersion:
|
|
type: string
|
|
kind:
|
|
type: string
|
|
metadata:
|
|
type: object
|
|
spec:
|
|
properties:
|
|
desc:
|
|
type: string
|
|
serviceAccountName:
|
|
type: string
|
|
env:
|
|
items:
|
|
type: object
|
|
type: array
|
|
envFrom:
|
|
items:
|
|
type: object
|
|
type: array
|
|
selector:
|
|
type: object
|
|
volumeMounts:
|
|
items:
|
|
type: object
|
|
type: array
|
|
volumes:
|
|
items:
|
|
type: object
|
|
type: array
|
|
required:
|
|
- selector
|
|
type: object
|
|
status:
|
|
type: object
|
|
type: object
|
|
|