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
370
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
34
What Python Can Learn From Other Languages (with notes)
coderanger
0
120
Swiss Army Django: Small Footprint ETL (with notes) - DjangoCon US
coderanger
0
170
Swiss Army Django: Small Footprint ETL - DjangoCon US
coderanger
0
44
How to look at space: PyCon AU
coderanger
0
82
Swiss Army Django: Small Footprint ETL
coderanger
0
67
Swiss Army Django: Small Footprint ETL (with notes)
coderanger
0
64
Minimum Viable Kubernetes
coderanger
0
27
Minimum Viable Kubernetes (with notes)
coderanger
0
370
Other Decks in Programming
See All in Programming
情報漏洩させないための設計
kubotak
5
1.3k
『改訂新版 良いコード/悪いコードで学ぶ設計入門』活用方法−爆速でスキルアップする!効果的な学習アプローチ / effective-learning-of-good-code
minodriven
28
4k
Оптимизируем производительность блока Казначейство
lamodatech
0
940
テストコードのガイドライン 〜作成から運用まで〜
riku929hr
7
1.4k
Итераторы в Go 1.23: зачем они нужны, как использовать, и насколько они быстрые?
lamodatech
0
1.3k
オニオンアーキテクチャを使って、 Unityと.NETでコードを共有する
soi013
0
370
Findy Team+ Awardを受賞したかった!ベストプラクティス応募内容をふりかえり、開発生産性向上もふりかえる / Findy Team Plus Award BestPractice and DPE Retrospective 2024
honyanya
0
140
HTML/CSS超絶浅い説明
yuki0329
0
190
ISUCON14感想戦で85万点まで頑張ってみた
ponyo877
1
580
ゼロからの、レトロゲームエンジンの作り方
tokujiros
3
1k
선언형 UI에서의 상태관리
l2hyunwoo
0
270
PHPUnitしか使ってこなかった 一般PHPerがPestに乗り換えた実録
mashirou1234
0
420
Featured
See All Featured
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
232
17k
Fireside Chat
paigeccino
34
3.1k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
330
21k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
3
240
YesSQL, Process and Tooling at Scale
rocio
170
14k
Fantastic passwords and where to find them - at NoRuKo
philnash
50
2.9k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
3.6k
Build The Right Thing And Hit Your Dates
maggiecrowley
33
2.5k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
33
2.7k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
33
2k
Gamification - CAS2011
davidbonilla
80
5.1k
For a Future-Friendly Web
brad_frost
176
9.5k
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