From 53762f4cb95935c2a5924ce3d00762bfb732185d Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Wed, 5 Sep 2018 15:46:09 +0300 Subject: [PATCH] demo: add test-fpga-region.yml This file will be used in the FPGA Device Plugin demo to demonstrate orchestration programmed FPGA workflow. --- demo/test-fpga-region.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 demo/test-fpga-region.yml diff --git a/demo/test-fpga-region.yml b/demo/test-fpga-region.yml new file mode 100644 index 00000000..6a0bcecd --- /dev/null +++ b/demo/test-fpga-region.yml @@ -0,0 +1,17 @@ +apiVersion: v1 +kind: Pod +metadata: + name: test-fpga-region +spec: + containers: + - name: test-container + image: ubuntu-demo-opae + imagePullPolicy: IfNotPresent + command: ["sh", "/usr/bin/test_fpga.sh"] + resources: + limits: + fpga.intel.com/arria10-nlb3: 1 + cpu: 1 + hugepages-2Mi: 20Mi + + restartPolicy: Never