Icons, Kubernetes resources maps & Explanation Kubernetes Rresources
The Kubernetes Icons Set is very useful for understanding Kubernetes and making slides about kubernetes, so I thought it would be nice to see it more, so I summarized it.
If you want to know a little more detail , check the official website of kubernetes.
Kubernetes Resources
Compute
- Pod: Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.
- ReplicaSet: ReplicaSet ensures that a specified number of pod replicas are running at any given time
- Deployment: Deployment enables declarative updates for Pods and ReplicaSets.
- DaemonSet: DaemonSet represents the configuration of a…