summaryrefslogtreecommitdiffstats
path: root/src/vagrant/kubeadm_ovsdpdk/examples
diff options
context:
space:
mode:
authorXuan Jia <jason.jiaxuan@gmail.com>2017-10-20 02:20:45 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-10-20 02:20:45 +0000
commit6837ac7bff5eba6b1d7faa0a797ee89a6550414e (patch)
tree29482045651e58ddeebcbaca4dae53f007b9d631 /src/vagrant/kubeadm_ovsdpdk/examples
parent4f63e7c80889263088be25716c52cc41f559541f (diff)
parenteecc28839b7088f6bd6be9538db7ddc1986b369f (diff)
Merge "seperate k8s basic installation and ovsdpdk installation"
Diffstat (limited to 'src/vagrant/kubeadm_ovsdpdk/examples')
-rw-r--r--src/vagrant/kubeadm_ovsdpdk/examples/virtio-user.yaml29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/vagrant/kubeadm_ovsdpdk/examples/virtio-user.yaml b/src/vagrant/kubeadm_ovsdpdk/examples/virtio-user.yaml
new file mode 100644
index 0000000..9ab1e06
--- /dev/null
+++ b/src/vagrant/kubeadm_ovsdpdk/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