Skip to content

Commit

Permalink
Update k8s notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
anonyknight committed Jan 7, 2024
1 parent 08aa46b commit cfd4e6b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/techs/DevSecOps/process/5.deploy/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,7 @@ The Blue/Green naming is just a way to distinguish between two separate environm
[5 Blue Green Deployment Best Practices for a Smooth Release](https://www.blazemeter.com/blog/blue-green-deployment-testing)

[What Is Blue-Green Deployment?](https://semaphoreci.com/blog/blue-green-deployment)

## Canary Deployment

[What Is Canary Deployment?](https://semaphoreci.com/blog/what-is-canary-deployment)
6 changes: 6 additions & 0 deletions docs/techs/DevSecOps/tools/k8s/k8s_concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,9 @@ Adding nodes:
- kubelet can self-register

- user manually add

## Pod

Pod is the smallest deployable unit, one or more containers with **shared resources and network.** It can contain [init containers](https://kubernetes.io/docs/concepts/workloads/pods/init-containers/) and [ephemeral containers](https://kubernetes.io/docs/concepts/workloads/pods/ephemeral-containers/) for debugging.

Workload resource manage pods: [Deployment](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/) or [Job](https://kubernetes.io/docs/concepts/workloads/controllers/job/). track state [StatefulSet](https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/)

0 comments on commit cfd4e6b

Please sign in to comment.