-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslide.html
70 lines (65 loc) · 3.1 KB
/
slide.html
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
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.3.1/reveal.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.3.1/theme/blood.min.css" id="theme">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.5.1/styles/base16/monokai.min.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown>
<textarea data-template>
## hashicorp/consul
What it is all about ?
---
## Consul is ...
https://learn.hashicorp.com/tutorials/consul/get-started#what-is-a-service-mesh
> A service mesh is a dedicated layer that provides secure service-to-service communication for on-prem, cloud, or multi-cloud infrastructure. Service meshes are often used with a microservice architectural pattern, but can provide value in any scenario where complex networking is involved.
---
## Services offered by consul
- Service Discovery
- Service Configuration (Key/Value store)
- Service mesh
- Session lock (leader election)
- Secure communication (mTLS + secure gossip encryption)
- ... and many more
---
## Consul properties
- Robust
- Consistent
- Distributed
</textarea>
</section>
<section>
<h2>Official consul intro</h2>
<iframe width="560" height="315" src="https://www.youtube.com/embed/mxeMdl0KvBI" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
https://www.youtube.com/embed/mxeMdl0KvBI
</section>
<section data-markdown>
<textarea data-template>
## learn consul
https://github.com/hashicorp/learn-consul-docker
</textarea>
</section>
<section>
Live demo
</section>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.3.1/reveal.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.3.1/plugin/markdown/markdown.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.3.1/plugin/notes/notes.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.3.1/plugin/highlight/highlight.min.js"></script>
<script>
Reveal.initialize({
controls: true,
progress: true,
history: true,
plugins: [ RevealMarkdown, RevealNotes, RevealHighlight ],
slideNumber: true,
autoAnimate: false,
transition: 'none'
});
</script>
</body>
</html>