diff options
author | Guo Ruijing <ruijing.guo@intel.com> | 2017-08-03 08:42:12 -0700 |
---|---|---|
committer | Guo Ruijing <ruijing.guo@intel.com> | 2017-08-03 08:43:45 -0700 |
commit | 79c38bff1b279a6d73bbbffd98f44613d76afbfe (patch) | |
tree | 5a0431ebf2f401e0fe8ae9eaffc8d540175814b8 /src/vagrant/k8s_kubeadm/examples | |
parent | dc766e69c0c08c55b6df2384bbcfd1e712f03160 (diff) |
deploy ovsdpdk by k8s
Change-Id: Ie8ea880db410e699cdda147b304705819e13157a
Signed-off-by: Guo Ruijing <ruijing.guo@intel.com>
Diffstat (limited to 'src/vagrant/k8s_kubeadm/examples')
-rw-r--r-- | src/vagrant/k8s_kubeadm/examples/virtio-user.yaml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/vagrant/k8s_kubeadm/examples/virtio-user.yaml b/src/vagrant/k8s_kubeadm/examples/virtio-user.yaml new file mode 100644 index 0000000..9ab1e06 --- /dev/null +++ b/src/vagrant/k8s_kubeadm/examples/virtio-user.yaml @@ -0,0 +1,29 @@ +apiVersion: v1 +kind: ReplicationController +metadata: + name: virtiouser +spec: + replicas: 2 + template: + metadata: + labels: + app: virtiouser + spec: + containers: + - name: virtiouser + image: openretriever/virtio-user-ping + volumeMounts: + - mountPath: /dev/hugepages + name: hugepage-volume + - mountPath: /var/run + name: vhost-volume + command: + - /root/setup_virtio_user.sh + volumes: + - name: hugepage-volume + hostPath: + path: /dev/hugepages + - name: vhost-volume + hostPath: + path: /var/run + restartPolicy: Always |