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
170
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
73
Other Decks in Programming
See All in Programming
php-conference-japan-2024
tasuku43
0
380
PHPとAPI Platformで作る本格的なWeb APIアプリケーション(入門編) / phpcon 2024 Intro to API Platform
ttskch
0
350
KubeCon NA 2024の全DB関連セッションを紹介
nnaka2992
0
100
20年もののレガシープロダクトに 0からPHPStanを入れるまで / phpcon2024
hirobe1999
0
910
これでLambdaが不要に?!Step FunctionsのJSONata対応について
iwatatomoya
2
3.9k
ゆるやかにgolangci-lintのルールを強くする / Kyoto.go #56
utgwkk
2
590
Запуск 1С:УХ в крупном энтерпрайзе: мечта и реальность ПМа
lamodatech
0
800
今年のアップデートで振り返るCDKセキュリティのシフトレフト/2024-cdk-security-shift-left
tomoki10
0
300
return文におけるstd::moveについて
onihusube
1
1.3k
AppRouterを用いた大規模サービス開発におけるディレクトリ構成の変遷と問題点
eiganken
1
250
React 19でお手軽にCSS-in-JSを自作する
yukukotani
5
500
Compose UIテストを使った統合テスト
hiroaki404
0
110
Featured
See All Featured
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
49
2.2k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
6
470
Docker and Python
trallard
43
3.2k
Become a Pro
speakerdeck
PRO
26
5.1k
Gamification - CAS2011
davidbonilla
80
5.1k
Into the Great Unknown - MozCon
thekraken
34
1.6k
Stop Working from a Prison Cell
hatefulcrawdad
267
20k
Visualization
eitanlees
146
15k
Testing 201, or: Great Expectations
jmmastey
41
7.2k
Statistics for Hackers
jakevdp
796
220k
Code Review Best Practice
trishagee
65
17k
The Pragmatic Product Professional
lauravandoore
32
6.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 :)