-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdespliegue.html
More file actions
94 lines (76 loc) · 1.95 KB
/
despliegue.html
File metadata and controls
94 lines (76 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="es">
<head>
<link rel="stylesheet" href="/theme/css/remark_theme.css" />
<title>Curso Rápido de Python</title>
<meta charset="utf-8" />
</head>
<body id="index" class="home">
<!--<header id="banner" class="body">-->
<!--<h1><a href="/">Curso Rápido de Python <strong></strong></a></h1>-->
<!--</header>-->
<!-- /#banner -->
<nav id="menu"><ul>
</ul></nav><!-- /#menu -->
<textarea id="source">
![]()
---
class: center, middle, light, first-slide
# Despliegue
## Mauricio Collazos
.footnote[]
---
# Modelos de servicio
- IaaS
- PaaS
- SaaS (???)
- FaaS
---
# IaaS
Bare Metal
Configuración bajo un sistema Unix
Pet vs Cattle
- [Chef](https://www.chef.io/chef/)
- [Puppet](https://puppet.com/)
- [Ansible](https://www.ansible.com/)
---
# PaaS
- [Heroku](https://www.heroku.com/)
- [Google App Engine](https://cloud.google.com/appengine/docs/)
- [Python Anywhere](https://www.pythonanywhere.com/)
---
# FaaS
- [Zappa](https://github.com/Miserlou/Zappa)
- [Chalice](https://github.com/aws/chalice)
---
# Contenedores
- [Docker](https://www.docker.com/)
- [Compose](https://docs.docker.com/compose/)
- [Swarm](https://docs.docker.com/engine/swarm/)
- [Kubernetes](https://kubernetes.io/)
---
# [GUnicorn](https://gunicorn.org/)
Flask
`wsgi.py`
```bash
from blog_project import create_app
app = create_app()
```
`gunicorn wsgi:app`
Django
```bash
gunicorn project_name.wsgi
```
</textarea>
<script src="/theme/js/remark.min.js"></script>
<script>
var slideshow = remark.create();
</script>
<footer id="contentinfo" class="body">
<address id="about" class="vcard body">
Proudly powered by <a href="http://getpelican.com/">Pelican</a>,
which takes great advantage of <a href="http://python.org">Python</a>.
</address><!-- /#about -->
</footer><!-- /#contentinfo -->
</body>
</html>