8 lines
298 B
Bash
8 lines
298 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# CRDs for the Intel GPU Device Plugin
|
|
echo "Installing CRDs for the Intel GPU Device Plugin..."
|
|
kubectl apply -f https://raw.githubusercontent.com/intel/helm-charts/main/charts/device-plugin-operator/crds/deviceplugin.intel.com_gpudeviceplugins.yaml
|
|
|
|
echo "The CRDs installed." |