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
June 29, 2014
Programming
0
74
Infrastructure management with Ansible
A short introduction to Ansible for managing your infrastructure
Nsukami
June 29, 2014
Tweet
Share
More Decks by Nsukami
See All by Nsukami
Infrastructure management with Ansible
lemeteore
0
180
Other Decks in Programming
See All in Programming
Чего вы не знали о строках в Python – Василий Рябов, PythoNN
sobolevn
0
160
iOSエンジニア向けの英語学習アプリを作る!
yukawashouhei
0
170
ИИ-Агенты в каждый дом – Алексей Порядин, PythoNN
sobolevn
0
150
高度なUI/UXこそHotwireで作ろう Kaigi on Rails 2025
naofumi
4
3.5k
エンジニアとして高みを目指す、 利益を生み出す設計の考え方 / design-for-profit
minodriven
23
12k
SpecKitでどこまでできる? コストはどれくらい?
leveragestech
0
540
止められない医療アプリ、そっと Swift 6 へ
medley
1
120
iOS 17で追加されたSubscriptionStoreView を利用して5分でサブスク実装チャレンジ
natmark
0
600
Pull-Requestの内容を1クリックで動作確認可能にするワークフロー
natmark
2
460
開発者への寄付をアプリ内課金として実装する時の気の使いどころ
ski
0
350
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
140
WebエンジニアがSwiftをブラウザで動かすプレイグラウンドを作ってみた
ohmori_yusuke
0
170
Featured
See All Featured
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
52
5.6k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
114
20k
What's in a price? How to price your products and services
michaelherold
246
12k
Building Flexible Design Systems
yeseniaperezcruz
329
39k
How to Think Like a Performance Engineer
csswizardry
27
2k
The Cost Of JavaScript in 2023
addyosmani
53
9k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
The Power of CSS Pseudo Elements
geoffreycrofte
79
6k
We Have a Design System, Now What?
morganepeng
53
7.8k
Building a Modern Day E-commerce SEO Strategy
aleyda
43
7.7k
Statistics for Hackers
jakevdp
799
220k
For a Future-Friendly Web
brad_frost
180
9.9k
Transcript
Infrastructure management with Ansible PyCon PL 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 :)