From 7090e29c18309c21614b5c44572ee8b451eac973 Mon Sep 17 00:00:00 2001 From: Guo Ruijing Date: Wed, 18 Oct 2017 19:16:27 -0400 Subject: multus cni support Change-Id: I0723447de8e9f5734a3a5d077f7f6f08cd02d9b3 Signed-off-by: Guo Ruijing --- src/vagrant/kubeadm_multus/examples/ubuntu.yaml | 32 +++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/vagrant/kubeadm_multus/examples/ubuntu.yaml (limited to 'src/vagrant/kubeadm_multus/examples') 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 -- cgit 1.2.3-korg