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
Infrastructure management with Ansible
Search
Nsukami
May 29, 2014
Programming
0
180
Infrastructure management with Ansible
A short introduction to Ansible for managing your infrastructure
Nsukami
May 29, 2014
Tweet
Share
More Decks by Nsukami
See All by Nsukami
Infrastructure management with Ansible
lemeteore
0
74
Other Decks in Programming
See All in Programming
CSC509 Lecture 11
javiergs
PRO
0
280
Reactive Thinking with Signals and the Resource API
manfredsteyer
PRO
0
120
Software Architecture
hschwentner
6
2.4k
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
670
Pythonに漸進的に型をつける
nealle
1
150
MCPサーバー「モディフィウス」で変更容易性の向上をスケールする / modifius
minodriven
3
250
開発組織の戦略的な役割と 設計スキル向上の効果
masuda220
PRO
10
2k
Claude Agent SDK を使ってみよう
hyshu
0
1.5k
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
680
TransformerからMCPまで(現代AIを理解するための羅針盤)
mickey_kubo
7
5.9k
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
170
Go言語はstack overflowの夢を見るか?
logica0419
1
680
Featured
See All Featured
Six Lessons from altMBA
skipperchong
29
4k
Context Engineering - Making Every Token Count
addyosmani
8
330
The Straight Up "How To Draw Better" Workshop
denniskardys
239
140k
YesSQL, Process and Tooling at Scale
rocio
174
15k
It's Worth the Effort
3n
187
28k
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.5k
jQuery: Nuts, Bolts and Bling
dougneiner
65
7.9k
GitHub's CSS Performance
jonrohan
1032
470k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
231
22k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
140
34k
Keith and Marios Guide to Fast Websites
keithpitt
412
23k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
34
2.3k
Transcript
Infrastructure management with Ansible PyCon India 2014 Bangalore Patrick Nsukami
/ @lemeteore / Freelance developer
About me ? Python developer System administrator (sometimes) Part of
a small developers team Currently building a VOD platform
About Ansible ? Imagine automation in langage that approaches plain
English, using SSH and without nothing to install on remote systems
About Ansible ? - Mutlinode orchestration framework - Written in
Python (extensible in Python) - GPL3 licensed (with some exceptions) - Created by Michael DeHaan - An already great and strong community
About Ansible ? - YAML syntax - Jinja2 templates -
SSH with no remote agents - A module library
Ad hoc commands Refers to running Ansible to perform some
quick command, directly from cli using the ansible command
None
Playbooks Anything you can do ad-hoc can be accomplished by
writing a playbook,it is a way to glue lots of operations together.
None
Organization One thing you will definitely want to do though,
is use the “roles” organization feature
None
Infrastructure management - Set up environments - Configure server -
Deploy code - Performs ad hoc tasks
None
None
Interesting resources - http://www.fullstackpython.com/configuration- management.html
Thanks a lot :)