Skip to content

Commit e174684

Browse files
committed
add devops resource
1 parent 7b85b66 commit e174684

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

content/pages/06-devops/00-devops.markdown

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,8 @@ automate the delivery of code from development to production.
6666
a decent start for figuring out why IT organizations consider DevOps the
6767
hot new topic after adopting an Agile development methodology.
6868

69+
* [SRE vs. DevOps: competing standards or close friends?](https://cloudplatform.googleblog.com/2018/05/SRE-vs-DevOps-competing-standards-or-close-friends.html)
70+
covers Google's take on how Site Reliability Engineering (SRE) fits
71+
with the DevOps world. Roughly speaking, SRE is more closely aligned with
72+
metrics and how to operate infrastructure and applications, rather than
73+
the broader principles embodied by the DevOps philosophy.

theme/templates/tutorials.html

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{% extends "base.html" %}
2+
3+
{% block meta_header %}{% if page.meta %}
4+
<meta name="description" content="{{ page.meta }}">
5+
<link rel="canonical" href="https://www.fullstackpython.com/{{ page.slug }}.html" />
6+
{% endif %}{% endblock %}
7+
8+
{% block title %}{{ page.title }} - {% endblock %}
9+
10+
{% block css %}<style>{% include "css/base.css" %}{% include "css/panel.css" %}{% include "css/page-article.css" %}{% include "css/responsive.css" %}</style>{% endblock %}
11+
12+
{% block banner %}{% include "banner.html" %}{% endblock %}
13+
14+
{% block content %}
15+
<div class="row">
16+
<div class="c8">
17+
{% if page.slug == 'about-author' %}
18+
<div class="row">
19+
<div class="c6">
20+
<img src="/img/visuals/matt-makai-2017.jpg" width="100%" style="border-radius:6px;margin-top:30px">
21+
</div>
22+
<div class="c6">
23+
{{ page.content }}
24+
</div>
25+
</div>
26+
{% else %}
27+
{{ page.content }}
28+
{% endif %}
29+
{% include "choices/" + page.slug + ".html" %}
30+
{% include "email-for-book.html" %}
31+
</div>
32+
<div class="co1 c3" id="sb">
33+
{% include "sidebar.html" %}
34+
</div>
35+
</div>
36+
{% endblock %}

0 commit comments

Comments
 (0)