-
Notifications
You must be signed in to change notification settings - Fork 586
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
operator intel-device-plugins-operator (0.31.0)
- Loading branch information
1 parent
332ddb2
commit 7b2c33c
Showing
13 changed files
with
2,820 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
operators/intel-device-plugins-operator/0.31.0/bundle.Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
FROM scratch | ||
|
||
# Core bundle labels. | ||
LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1 | ||
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/ | ||
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/ | ||
LABEL operators.operatorframework.io.bundle.package.v1=intel-device-plugins-operator | ||
LABEL operators.operatorframework.io.bundle.channels.v1=stable | ||
LABEL operators.operatorframework.io.bundle.channel.default.v1=stable | ||
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.37.0 | ||
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1 | ||
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v2 | ||
|
||
# Labels for testing. | ||
LABEL operators.operatorframework.io.test.mediatype.v1=scorecard+v1 | ||
LABEL operators.operatorframework.io.test.config.v1=tests/scorecard/ | ||
|
||
# Copy files to locations specified by labels. | ||
COPY ./manifests /manifests/ | ||
COPY ./metadata /metadata/ | ||
COPY ./tests/scorecard /tests/scorecard/ |
196 changes: 196 additions & 0 deletions
196
...tel-device-plugins-operator/0.31.0/manifests/deviceplugin.intel.com_dlbdeviceplugins.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,196 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.16.1 | ||
creationTimestamp: null | ||
name: dlbdeviceplugins.deviceplugin.intel.com | ||
spec: | ||
group: deviceplugin.intel.com | ||
names: | ||
kind: DlbDevicePlugin | ||
listKind: DlbDevicePluginList | ||
plural: dlbdeviceplugins | ||
singular: dlbdeviceplugin | ||
scope: Cluster | ||
versions: | ||
- 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 | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
description: |- | ||
DlbDevicePlugin is the Schema for the dlbdeviceplugins API. It represents | ||
the DLB device plugin responsible for advertising Intel DLB hardware resources to | ||
the kubelet. | ||
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: DlbDevicePluginSpec defines the desired state of DlbDevicePlugin. | ||
properties: | ||
image: | ||
description: Image is a container image with DLB device plugin executable. | ||
type: string | ||
initImage: | ||
description: InitImage is a container image with a script that initializes | ||
devices. | ||
type: string | ||
logLevel: | ||
description: LogLevel sets the plugin's log level. | ||
minimum: 0 | ||
type: integer | ||
nodeSelector: | ||
additionalProperties: | ||
type: string | ||
description: NodeSelector provides a simple way to constrain device | ||
plugin pods to nodes with particular labels. | ||
type: object | ||
tolerations: | ||
description: Specialized nodes (e.g., with accelerators) can be Tainted | ||
to make sure unwanted pods are not scheduled on them. Tolerations | ||
can be set for the plugin pod to neutralize the Taint. | ||
items: | ||
description: |- | ||
The pod this Toleration is attached to tolerates any taint that matches | ||
the triple <key,value,effect> using the matching operator <operator>. | ||
properties: | ||
effect: | ||
description: |- | ||
Effect indicates the taint effect to match. Empty means match all taint effects. | ||
When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. | ||
type: string | ||
key: | ||
description: |- | ||
Key is the taint key that the toleration applies to. Empty means match all taint keys. | ||
If the key is empty, operator must be Exists; this combination means to match all values and all keys. | ||
type: string | ||
operator: | ||
description: |- | ||
Operator represents a key's relationship to the value. | ||
Valid operators are Exists and Equal. Defaults to Equal. | ||
Exists is equivalent to wildcard for value, so that a pod can | ||
tolerate all taints of a particular category. | ||
type: string | ||
tolerationSeconds: | ||
description: |- | ||
TolerationSeconds represents the period of time the toleration (which must be | ||
of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, | ||
it is not set, which means tolerate the taint forever (do not evict). Zero and | ||
negative values will be treated as 0 (evict immediately) by the system. | ||
format: int64 | ||
type: integer | ||
value: | ||
description: |- | ||
Value is the taint value the toleration matches to. | ||
If the operator is Exists, the value should be empty, otherwise just a regular string. | ||
type: string | ||
type: object | ||
type: array | ||
type: object | ||
status: | ||
description: DlbDevicePluginStatus defines the observed state of DlbDevicePlugin. | ||
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. | ||
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 | ||
x-kubernetes-map-type: atomic | ||
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 | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: null | ||
storedVersions: null |
Oops, something went wrong.