Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Philippe-Collignon committed Apr 20, 2020
0 parents commit a1b2f43
Show file tree
Hide file tree
Showing 1,224 changed files with 232,674 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
repo
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Packaging Applications with Helm for Kubernetes course @ Pluralsight
Ressources for "Packaging Applications with Helm for Kubernetes" @ Pluralsight (Helm version 3)
80 changes: 80 additions & 0 deletions lab10_helm_dependencies_begin/app/backend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache

# next.js build output
.next

# nuxt.js build output
.nuxt

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/
20 changes: 20 additions & 0 deletions lab10_helm_dependencies_begin/app/backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
FROM node:carbon-alpine

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_ENV production

ADD package.json /home/node/app/package.json
ADD server.js /home/node/app/server.js

ENV MONGODB_URI = "mongodb://mongodb:27017/guestbook"

RUN chown -R node:node /home/node/app

USER node
WORKDIR /home/node/app
RUN npm install --save

EXPOSE 3000

CMD node server.js
#CMD exec /bin/bash -c "trap : TERM INT; sleep infinity & wait"
4 changes: 4 additions & 0 deletions lab10_helm_dependencies_begin/app/backend/dockerize.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash
docker build -f Dockerfile -t backend .
docker tag backend phico/backend:2.0
docker push phico/backend:2.0
Loading

0 comments on commit a1b2f43

Please sign in to comment.