summaryrefslogtreecommitdiffstats
path: root/src/arm/cni-deploy/roles/multus/templates/multus-testpod.yml.j2
blob: 4884846899423a899e7192fe455be14f2396f723 (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: multus-test
  annotations:
    networks: '[
      { "name": "flannel-networkobj" },
      { "name": "macvlan-networkobj" }
    ]'
spec:
  containers:
    - name: multus-test
      image: "busybox"
      command: ["sleep", "100d"]
      stdin: true
      tty: true
  nodeSelector:
    kubernetes.io/hostname: "{{ groups['kube-node'][0] }}"