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

- Add script/fpga-plugin-prepare-for-kustomization.sh, creates contents for the secret needed by the fpga plugin webhook. - Single-command fpga plugin + webhook deployment for both modes: - `kubectl create -k deployments/fpga_plugin/overlays/af` - `kubectl create -k deployments/fpga_plugin/overlays/region` - Change intel-fpga-plugin image CMD to ENTRYPOINT.
23 lines
499 B
YAML
23 lines
499 B
YAML
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: acceleratorfunctions.fpga.intel.com
|
|
spec:
|
|
group: fpga.intel.com
|
|
version: v1
|
|
scope: Namespaced
|
|
names:
|
|
plural: acceleratorfunctions
|
|
singular: acceleratorfunction
|
|
kind: AcceleratorFunction
|
|
shortNames:
|
|
- af
|
|
validation:
|
|
openAPIV3Schema:
|
|
properties:
|
|
spec:
|
|
properties:
|
|
afuId:
|
|
type: string
|
|
pattern: '^[0-9a-f]{8,128}$'
|