container - scale · 2018-03-05 · paas & container technologies are often very closely tied...

26
Container

Upload: others

Post on 31-May-2020

0 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar

Container

Page 2: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar

Page 3: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar
Page 4: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar

Image credits to Giphy and/or their respective creators

Page 9: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar
Page 10: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar
Page 11: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar
Page 12: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar

Page 13: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar
Page 14: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar

Page 15: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar

# Create a new "bare" build (creates BuildConfig (bc) & ImageStream (is))

$ oc new-build --image-stream=openshift/jboss-xxxx --binary=true --name=app

# Define a Deployable App (creates DeploymentConfig (dc) and Service (svc))

$ oc new-app app

# Let the app become accessible to the outside world

$ oc expose svc/app

# Restart the build using the WAR file dropped in an s2i/deployments folder

$ oc start-build app --from-dir=s2i/

# Deployment is triggered upon successful build

Page 17: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar

●●●●

APP.NAME APP_NAME

JAVA_OPTS_APPEND

CATALINA_OPTS_APPEND

Page 19: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar
Page 20: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar
Page 21: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar

●○

○○

Page 22: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar

Page 23: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar
Page 24: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar

●○○

Page 26: Container - SCALE · 2018-03-05 · Paas & Container technologies are often very closely tied with DevOps. In fact, ... To that end, we have compiled a reading list to get you familiar