summaryrefslogtreecommitdiffstats
path: root/src/arm/cni-deploy/roles/sriov/templates/sriov-testpod.yml.j2
blob: c1d01bcb3f4f802236d311da0af13bfadc4c8dce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
apiVersion: v1
kind: Pod
metadata:
  name: sriov-test
  annotations:
    networks: '[
      { "name": "flannel-networkobj" },
      { "name": "sriov-networkobj" }
    ]'
spec:
  containers:
    - name: sriov-test
      image: "busybox"
      command: ["sleep", "100d"]
      stdin: true
      tty: true
  nodeSelector:
    kubernetes.io/hostname: "{{ groups['kube-node'][0] }}"