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

The version of the compute-runtime project installed in ubuntu-demo-opencl is not working with the most recent GPUs anymore. Instead of updating it, move to use pre-built images. This is inlined with our goal to speed-up CI by skipping unnecessary demo images. Signed-off-by: Mikko Ylinen <mikko.ylinen@intel.com>
23 lines
492 B
YAML
23 lines
492 B
YAML
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: intelgpu-demo-job
|
|
labels:
|
|
jobgroup: intelgpu-demo
|
|
spec:
|
|
template:
|
|
metadata:
|
|
labels:
|
|
jobgroup: intelgpu-demo
|
|
spec:
|
|
restartPolicy: Never
|
|
containers:
|
|
-
|
|
name: intelgpu-demo-job-1
|
|
image: intelopencl/intel-opencl:ubuntu-20.10-ppa
|
|
imagePullPolicy: IfNotPresent
|
|
command: [ "clinfo" ]
|
|
resources:
|
|
limits:
|
|
gpu.intel.com/i915: 1
|