You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 01_intro.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,3 +8,12 @@ Install:
8
8
In nutshell:
9
9
- docker
10
10
- kubernetes
11
+
12
+
13
+
Containers
14
+
15
+
Application containerization is an OS-level virtualization method used to deploy and run distributed applications without launching an entire virtual machine (VM) for each app.
16
+
Containers work on bare-metal systems, cloud instances and virtual machines, across Linux and select Windows and Mac OSes.
- microservices architecture shifts complexity from the space of code design and implementation into system operations
3
+
- pushing the complexity from one place (software design and development) to another (operations) is just like hiding some tricky parts in somewhere else
4
+
- k8s lets you to automate things and solve the problems easily
5
+
6
+

7
+
8
+
# Problems
9
+
10
+
## Change management
11
+
- rapid provisioning of new resources
12
+
- services can come and go
13
+
- should be able to deploy a new service quickly
14
+
15
+
### Deployment strategies
16
+
- k8s deployment `.spec.strategy.type==Recreate` will kill all pods before new ones are created
17
+
- 0 downtime deployment - `.spec.strategy.type==RollingUpdate` controls the process with `maxUnavailable` and `maxSurge`
0 commit comments