mirror of
https://github.com/intel/intel-device-plugins-for-kubernetes.git
synced 2025-06-03 03:59:37 +00:00

With controller-gen 0.4.0, admissionregistration defaults to v1 API. Signed-off-by: Mikko Ylinen <mikko.ylinen@intel.com>
149 lines
6.2 KiB
YAML
149 lines
6.2 KiB
YAML
|
|
---
|
|
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
annotations:
|
|
controller-gen.kubebuilder.io/version: v0.4.0
|
|
creationTimestamp: null
|
|
name: fpgadeviceplugins.deviceplugin.intel.com
|
|
spec:
|
|
additionalPrinterColumns:
|
|
- JSONPath: .status.desiredNumberScheduled
|
|
name: Desired
|
|
type: integer
|
|
- JSONPath: .status.numberReady
|
|
name: Ready
|
|
type: integer
|
|
- JSONPath: .spec.nodeSelector
|
|
name: Node Selector
|
|
type: string
|
|
- JSONPath: .metadata.creationTimestamp
|
|
name: Age
|
|
type: date
|
|
group: deviceplugin.intel.com
|
|
names:
|
|
kind: FpgaDevicePlugin
|
|
listKind: FpgaDevicePluginList
|
|
plural: fpgadeviceplugins
|
|
singular: fpgadeviceplugin
|
|
scope: Namespaced
|
|
subresources:
|
|
status: {}
|
|
validation:
|
|
openAPIV3Schema:
|
|
description: FpgaDevicePlugin is the Schema for the fpgadeviceplugins API.
|
|
properties:
|
|
apiVersion:
|
|
description: 'APIVersion defines the versioned schema of this representation
|
|
of an object. Servers should convert recognized schemas to the latest
|
|
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
|
|
type: string
|
|
kind:
|
|
description: 'Kind is a string value representing the REST resource this
|
|
object represents. Servers may infer this from the endpoint the client
|
|
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
|
|
type: string
|
|
metadata:
|
|
type: object
|
|
spec:
|
|
description: FpgaDevicePluginSpec defines the desired state of FpgaDevicePlugin.
|
|
properties:
|
|
image:
|
|
description: Image is a container image with FPGA device plugin executable.
|
|
type: string
|
|
initImage:
|
|
description: InitImage is a container image with tools used to initialize
|
|
the host before starting FPGA workloads on it.
|
|
type: string
|
|
logLevel:
|
|
description: LogLevel sets the plugin's log level.
|
|
minimum: 0
|
|
type: integer
|
|
mode:
|
|
description: Mode is a mode the plugin's operation.
|
|
enum:
|
|
- af
|
|
- region
|
|
- regiondevel
|
|
type: string
|
|
nodeSelector:
|
|
additionalProperties:
|
|
type: string
|
|
description: NodeSelector provides a simple way to constrain device
|
|
plugin pods to nodes with particular labels.
|
|
type: object
|
|
type: object
|
|
status:
|
|
description: FpgaDevicePluginStatus defines the observed state of FpgaDevicePlugin.
|
|
properties:
|
|
controlledDaemonSet:
|
|
description: ControlledDaemoSet references the DaemonSet controlled
|
|
by the operator.
|
|
properties:
|
|
apiVersion:
|
|
description: API version of the referent.
|
|
type: string
|
|
fieldPath:
|
|
description: 'If referring to a piece of an object instead of an
|
|
entire object, this string should contain a valid JSON/Go field
|
|
access statement, such as desiredState.manifest.containers[2].
|
|
For example, if the object reference is to a container within
|
|
a pod, this would take on a value like: "spec.containers{name}"
|
|
(where "name" refers to the name of the container that triggered
|
|
the event) or if no container name is specified "spec.containers[2]"
|
|
(container with index 2 in this pod). This syntax is chosen only
|
|
to have some well-defined way of referencing a part of an object.
|
|
TODO: this design is not final and this field is subject to change
|
|
in the future.'
|
|
type: string
|
|
kind:
|
|
description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
|
|
type: string
|
|
name:
|
|
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
|
|
type: string
|
|
namespace:
|
|
description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
|
|
type: string
|
|
resourceVersion:
|
|
description: 'Specific resourceVersion to which this reference is
|
|
made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
|
|
type: string
|
|
uid:
|
|
description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
|
|
type: string
|
|
type: object
|
|
desiredNumberScheduled:
|
|
description: The total number of nodes that should be running the device
|
|
plugin pod (including nodes correctly running the device plugin pod).
|
|
format: int32
|
|
type: integer
|
|
nodeNames:
|
|
description: The list of Node names where the device plugin pods are
|
|
running.
|
|
items:
|
|
type: string
|
|
type: array
|
|
numberReady:
|
|
description: The number of nodes that should be running the device plugin
|
|
pod and have one or more of the device plugin pod running and ready.
|
|
format: int32
|
|
type: integer
|
|
required:
|
|
- desiredNumberScheduled
|
|
- numberReady
|
|
type: object
|
|
type: object
|
|
version: v1
|
|
versions:
|
|
- name: v1
|
|
served: true
|
|
storage: true
|
|
status:
|
|
acceptedNames:
|
|
kind: ""
|
|
plural: ""
|
|
conditions: []
|
|
storedVersions: []
|