summaryrefslogtreecommitdiffstats
path: root/src/vagrant/kubeadm_multus/examples
diff options
context:
space:
mode:
authorGuo Ruijing <ruijing.guo@intel.com>2017-10-18 19:16:27 -0400
committerGuo Ruijing <ruijing.guo@intel.com>2017-10-18 19:18:23 -0400
commit7090e29c18309c21614b5c44572ee8b451eac973 (patch)
tree707f4c2208a8b75342dc2781f305e3f8315a46b1 /src/vagrant/kubeadm_multus/examples
parent4b7b5289169f5790a9cbdd65edf01cd3f372ee99 (diff)
multus cni support
Change-Id: I0723447de8e9f5734a3a5d077f7f6f08cd02d9b3 Signed-off-by: Guo Ruijing <ruijing.guo@intel.com>
Diffstat (limited to 'src/vagrant/kubeadm_multus/examples')
-rw-r--r--src/vagrant/kubeadm_multus/examples/ubuntu.yaml32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/vagrant/kubeadm_multus/examples/ubuntu.yaml b/src/vagrant/kubeadm_multus/examples/ubuntu.yaml
new file mode 100644
index 0000000..b01f903
--- /dev/null
+++ b/src/vagrant/kubeadm_multus/examples/ubuntu.yaml
@@ -0,0 +1,32 @@
+apiVersion: v1
+kind: Service
+metadata:
+ name: ubuntu
+ labels:
+ app: ubuntu
+spec:
+ type: NodePort
+ ports:
+ - port: 80
+ protocol: TCP
+ name: http
+ selector:
+ app: ubuntu
+---
+apiVersion: v1
+kind: ReplicationController
+metadata:
+ name: ubuntu
+spec:
+ replicas: 2
+ template:
+ metadata:
+ labels:
+ app: ubuntu
+ spec:
+ containers:
+ - name: ubuntu
+ image: openretriever/ubuntu1604-ping
+ command: [ "/bin/bash", "-c", "sleep 30000" ]
+ ports:
+ - containerPort: 80