Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
What Do All Of These Words Mean? A DevOps Glossary
Search
Noah Kantrowitz
October 17, 2018
Programming
1
360
What Do All Of These Words Mean? A DevOps Glossary
Lightning talk from DjangoCon US 2018 in San Diego
Noah Kantrowitz
October 17, 2018
Tweet
Share
More Decks by Noah Kantrowitz
See All by Noah Kantrowitz
What Python Can Learn From Other Languages
coderanger
0
26
What Python Can Learn From Other Languages (with notes)
coderanger
0
100
Swiss Army Django: Small Footprint ETL (with notes) - DjangoCon US
coderanger
0
160
Swiss Army Django: Small Footprint ETL - DjangoCon US
coderanger
0
43
How to look at space: PyCon AU
coderanger
0
79
Swiss Army Django: Small Footprint ETL
coderanger
0
62
Swiss Army Django: Small Footprint ETL (with notes)
coderanger
0
62
Minimum Viable Kubernetes
coderanger
0
24
Minimum Viable Kubernetes (with notes)
coderanger
0
350
Other Decks in Programming
See All in Programming
Contemporary Test Cases
maaretp
0
130
Generative AI Use Cases JP (略称:GenU)奮闘記
hideg
1
290
3 Effective Rules for Using Signals in Angular
manfredsteyer
PRO
1
100
Webの技術スタックで マルチプラットフォームアプリ開発を可能にするElixirDesktopの紹介
thehaigo
2
1k
Jakarta EE meets AI
ivargrimstad
0
140
What’s New in Compose Multiplatform - A Live Tour (droidcon London 2024)
zsmb
1
470
3 Effective Rules for Using Signals in Angular
manfredsteyer
PRO
0
100
アジャイルを支えるテストアーキテクチャ設計/Test Architecting for Agile
goyoki
9
3.3k
Macとオーディオ再生 2024/11/02
yusukeito
0
370
最新TCAキャッチアップ
0si43
0
140
Better Code Design in PHP
afilina
PRO
0
120
とにかくAWS GameDay!AWSは世界の共通言語! / Anyway, AWS GameDay! AWS is the world's lingua franca!
seike460
PRO
1
860
Featured
See All Featured
Large-scale JavaScript Application Architecture
addyosmani
510
110k
Thoughts on Productivity
jonyablonski
67
4.3k
Bootstrapping a Software Product
garrettdimon
PRO
305
110k
Adopting Sorbet at Scale
ufuk
73
9.1k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
159
15k
Designing the Hi-DPI Web
ddemaree
280
34k
Intergalactic Javascript Robots from Outer Space
tanoku
269
27k
How To Stay Up To Date on Web Technology
chriscoyier
788
250k
We Have a Design System, Now What?
morganepeng
50
7.2k
Fashionably flexible responsive web design (full day workshop)
malarkey
405
65k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
665
120k
The Invisible Side of Design
smashingmag
298
50k
Transcript
Noah Kantrowitz – @kantrn – coderanger.net What Do All Of
These Words Mean? A DevOps Glossary
Noah Ridecell Moving On
Virtual Machine A server but running on "simulated" hardware
VM Image The content of the hard disk for a
future VM
Vagrant A tool for making VMs on your laptop
Cloud Someone else maintains the physical hardware
AWS Amazon Web Services, a cloud provider
EC2 Elastic Compute Cloud, AWS makes you VMs
S3 Simple Storage Service, AWS stores your files
CloudFormation Create and manage AWS stuff using YAML files instead
of clicking in the web UI
Terraform Create and manage things on lots of clouds without
clicking in the web UI
GCE Google Cloud Engine, AWS but by Google
Azure AWS but by Microsoft (yes, you can run Linux)
OpenStack AWS except you also run the physical hardware too
Container A process running with a bunch of security options
Container Image A tarball containing the files a container will
see (and some metadata)
Docker A tool for creating container images and starting containers
Dockerfile A file containing instructions for creating a container image
Kubernetes Big, complex, awesome thing for managing lots of containers
Docker Swarm Big, complex, less awesome thing for managing lots
of containers
Docker Compose Small, complex thing for managing a few containers
Orchestration Coordinating multiple containers together along with storage and networking
they need
Resource Scheduling Working out which server to run a container
on given multiple options
Serverless Tool(s) for making web apps/APIs with less boilerplate
CI Continuous Integration, except not that. Running tests automatically on
every commit
CI Pipeline Dividing tests up into multiple groups and then
chaining them together
Jenkins Popular (and often infuriating) CI tool
Travis Also a popular CI too, but you don't have
to run it yourself and free for open source
CD Continuous Delivery or Deployment, if the tests pass then
it gets deployed
Big Data Running queries against more data than will fit
on one server (~>= 10TB)
Hadoop Popular suite of tools for Big Data
Spark Hadoop component used for running the fancy queries
ETL Extract Transform Load, a common Big Data query pattern
InfoSec Information Security, keeping your data safe
Black Hat Using InfoSec for evil
White Hat Using InfoSec for good
Red Team White hat that attacks systems (with
permission)
Blue Team White hat that defends systems
Purple Team Both!
Hash One-way function, given the output you can't get the
input
Encryption Reversible, but only with the right key
Thank You Noah Kantrowitz @kantrn coderanger.net