diff options
author | Ruijing Guo <ruijing.guo@intel.com> | 2017-10-19 08:49:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-10-19 08:49:45 +0000 |
commit | 4f63e7c80889263088be25716c52cc41f559541f (patch) | |
tree | a8cfeffd8b285e9fb508ecf302435c42d65fab4c /src/vagrant/kubeadm_multus/examples | |
parent | e5476e92b95b4cca079381ceac7e3a7b147c38a2 (diff) | |
parent | 7090e29c18309c21614b5c44572ee8b451eac973 (diff) |
Merge "multus cni support"
Diffstat (limited to 'src/vagrant/kubeadm_multus/examples')
-rw-r--r-- | src/vagrant/kubeadm_multus/examples/ubuntu.yaml | 32 |
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 |