14 lines
818 B
Bash
14 lines
818 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# CRDs for the kubernetes-sigs' Application CRD
|
|
echo "Installing CRDs for the kubernetes-sigs' Application CRD..."
|
|
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/application/master/config/crd/bases/app.k8s.io_applications.yaml
|
|
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/application/master/config/crd/patches/cainjection_in_applications.yaml
|
|
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/application/master/config/crd/patches/webhook_in_applications.yaml
|
|
|
|
# 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." |