Added Node.js / MongoDB example

This commit is contained in:
Sandeep Dinesh
2015-08-19 18:04:53 -07:00
parent 8a43bd621e
commit d27a104454
6 changed files with 413 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
apiVersion: v1
kind: ReplicationController
metadata:
labels:
name: web
name: web-controller
spec:
replicas: 2
selector:
name: web
template:
metadata:
labels:
name: web
spec:
containers:
- image: node:0.10.40
command: ['/bin/sh', '-c']
args: ['cd /home && git clone https://github.com/ijason/NodeJS-Sample-App.git demo && cd demo/EmployeeDB/ && npm install && sed -i -- ''s/localhost/mongo/g'' app.js && node app.js']
name: web
ports:
- containerPort: 3000
name: http-server