Skip to content

Commit 2c7781e

Browse files
committedFeb 15, 2018
initial commit
0 parents  commit 2c7781e

12 files changed

+1042
-0
lines changed
 

‎.dockerignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
npm-debug.log
3+
.git

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

‎Dockerfile

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# FROM node:alpine
2+
FROM alpine:3.6
3+
4+
# set the default NODE_ENV to production
5+
# for dev/test build with: docker build --build-arg NODE=development .
6+
# and the testing npms will be included
7+
ARG NODE=production
8+
ENV NODE_ENV ${NODE}
9+
10+
# copy package info early to install npms and delete npm command
11+
WORKDIR /usr/src/app
12+
COPY package*.json ./
13+
RUN apk -U add nodejs nodejs-npm && \
14+
npm install && apk del --purge nodejs-npm && \
15+
rm -rvf /var/cache/* /root/.npm /tmp/*
16+
17+
# copy the code
18+
COPY . .
19+
EXPOSE 3000
20+
CMD [ "node", "server.js" ]

‎README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Amazon ECS Workshop
2+
3+
This is part of an Amazon ECS workshop at https://ecsworkshop.com

‎buildspec-test.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: 0.2
2+
3+
phases:
4+
install:
5+
commands:
6+
- export IMAGE_TAG=$(echo $CODEBUILD_RESOLVED_SOURCE_VERSION | cut -c 1-7)
7+
- export ACCOUNT=$(echo $CODEBUILD_BUILD_ARN |cut -f5 -d:)
8+
- export $(cat mu-env.sh)
9+
- echo '***** This is the current env:'
10+
- printenv
11+
build:
12+
commands:
13+
- curl -m3 -sL -w "%{http_code}\\n" "$BASE_URL" -o /dev/null

‎buildspec.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
version: 0.2
2+
3+
phases:
4+
install:
5+
commands:
6+
- export IMAGE_TAG=$(echo $CODEBUILD_RESOLVED_SOURCE_VERSION | cut -c 1-7)
7+
- export ACCOUNT=$(echo $CODEBUILD_BUILD_ARN |cut -f5 -d:)
8+
- echo '***** This is the current env:'
9+
- printenv
10+
#- echo '***** Download nodejs repo:'
11+
#- curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -
12+
#- echo '***** install nodejs:'
13+
#- apt-get install -y nodejs build-essential
14+
#- echo '***** install our npms:'
15+
#- npm install
16+
build:
17+
commands:
18+
#- echo '***** run tests:'
19+
#- npm test -- > testresult.txt
20+
# - docker build -t myimage .
21+
post_build:
22+
commands:
23+
- printf '[{"name":"example-backend","imageUri":"%s"}]' $REPOSITORY_URI:$IMAGE_TAG > imagedefinitions.json
24+
- echo $IMAGE_TAG > code_hash.txt
25+
# - docker pull anchore/cli
26+
# - docker run -d -v $(pwd):/source-dir -v /var/run/docker.sock:/var/run/docker.sock --name anchore anchore/cli:latest
27+
# - docker exec anchore anchore feeds sync
28+
# - docker exec anchore anchore analyze --image myimage --dockerfile /source-dir/Dockerfile
29+
30+
artifacts:
31+
files:
32+
- '**/*'

‎code_hash.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NOHASH

‎mu.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
service:
3+
desiredCount: 3
4+
maxSize: 6
5+
port: 3000
6+
priority: 50
7+
pathPatterns:
8+
- /*
9+
networkMode: awsvpc
10+
parameters:
11+
'mu-service-ecsdemo-nodejs-acceptance':
12+
ElbHttpListenerArn:
13+
mu-loadbalancer-acceptance-BackendLBHttpListenerArn
14+
'mu-service-ecsdemo-nodejs-production':
15+
ElbHttpListenerArn:
16+
mu-loadbalancer-production-BackendLBHttpListenerArn

‎package-lock.json

+842
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "example-nodejs",
3+
"version": "1.0.0",
4+
"license": "ISC",
5+
"main": "server.js",
6+
"scripts": {
7+
"test": "mocha"
8+
},
9+
"dependencies": {
10+
"express": "^4.16.2",
11+
"express-healthcheck": "^0.1.0",
12+
"internal-ip": "^3.0.1",
13+
"ip": "^1.1.5",
14+
"morgan": "^1.9.0"
15+
},
16+
"devDependencies": {
17+
"mocha": "^4.1.0",
18+
"supertest": "^3.0.0"
19+
}
20+
}

‎server.js

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
// use the express framework
2+
var express = require('express');
3+
var app = express();
4+
5+
var fs = require('fs');
6+
var code_hash = fs.readFileSync('code_hash.txt','utf8');
7+
console.log (code_hash);
8+
9+
// internal-ip: detect the correct IP based on default gw
10+
var internalip = require('internal-ip');
11+
var ipaddress = internalip.v4.sync();
12+
13+
// use ipaddress to find interface netmask
14+
var ifaces = require('os').networkInterfaces();
15+
for (var dev in ifaces) {
16+
// ... and find the one that matches the criteria
17+
var iface = ifaces[dev].filter(function(details) {
18+
return details.address === `${ipaddress}` && details.family === 'IPv4';
19+
});
20+
if(iface.length > 0) ifacenetmask = iface[0].netmask;
21+
}
22+
23+
// ip: separate out the network using the subnet mask
24+
var ipnet = require('ip');
25+
var network = ipnet.mask(`${ipaddress}`, `${ifacenetmask}`)
26+
27+
// morgan: generate apache style logs to the console
28+
var morgan = require('morgan')
29+
app.use(morgan('combined'));
30+
31+
// express-healthcheck: respond on /health route for LB checks
32+
app.use('/health', require('express-healthcheck')());
33+
34+
// label the AZ based on which subnet we are on
35+
switch (network) {
36+
case '10.0.100.0':
37+
var az = '1a';
38+
break;
39+
case '10.0.101.0':
40+
var az = '1b';
41+
break;
42+
case '10.0.102.0':
43+
var az = '1c';
44+
break;
45+
default:
46+
var az = 'unknown'
47+
break;
48+
}
49+
50+
// main route
51+
app.get('/', function (req, res) {
52+
res.set({
53+
'Content-Type': 'text/plain'
54+
})
55+
res.send(`Node.js backend: Hello! from ${ipaddress} in AZ-${az} commit ${code_hash}`);
56+
// res.send(`Hello World! from ${ipaddress} in AZ-${az} which has been up for ` + process.uptime() + 'ms');
57+
});
58+
59+
// health route - variable subst is more pythonic just as an example
60+
var server = app.listen(3000, function() {
61+
var port = server.address().port;
62+
console.log('Example app listening on port %s!', port);
63+
});
64+
65+
// export the server to make tests work
66+
module.exports = server;

‎test/test.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
var request = require('supertest');
2+
describe('loading express', function () {
3+
var server;
4+
beforeEach(function () {
5+
server = require('../server');
6+
});
7+
after(function (done) {
8+
server.close(done);
9+
});
10+
it('responds to /', function testSlash(done) {
11+
request(server)
12+
.get('/')
13+
.expect(200, done);
14+
});
15+
it('responds to /health', function testSlash(done) {
16+
request(server)
17+
.get('/health')
18+
.expect(200, done);
19+
});
20+
it('404 everything else', function testPath(done) {
21+
request(server)
22+
.get('/foo/bar')
23+
.expect(404, done);
24+
});
25+
});

0 commit comments

Comments
 (0)
Please sign in to comment.