- Learning Windows Server Containers
- Srikanth Machiraju
- 303字
- 2021-07-02 23:23:23
Kubernetes
Kubernetes is a cluster manager from Google. Google was the first company to introduce the concept of container clusters. Kubernetes has many amazing features for cluster management. A few of them are:
- Pods: Kubernetes pods are used for logically grouping containers. Pods are scheduled and managed as independent units. Pods can also share data and communication channels. On the down side if one container in a pod dies, the whole pod dies. This might be valid in the cases of these containers being interdependent or closely coupled.
- Replication controllers: Replication controllers ensure reliability across hosts. For example, let's say you always want three pod units/pods of the backend service, replication controllers ensure that three pods are running by checking their health on a regular basis. If any pod doesn't respond, replication controllers immediately spin up another instance of pod and therefore ensure reliability and availability.
- Labels: Labels are used to collectively name a set of pods so that teams can operate them as collective units. Naming can be done using environments such as dev, staging and production, or using geographical locations. Replication controllers can be used to collectively migrate collection of pods across nodes, grouping them by labels.
- Service proxy: Within a huge container cluster, you would need a neat and clean mechanism to resolve pods/container hosts using labels or name queries. Service proxy helps you resolve requests to a single logical set of pods using label-driven selectors. In the future you might see custom proxies that resolve to a pod based on custom configuration. For example, if you want to serve your premium customers using one set of frontend pods that are configured for quick response times and basic customers using another set of frontend pods, you can configure the environment accordingly and route traffic based on smart domain driven decisions.
推薦閱讀
- Linux運維之道(第3版)
- PLC控制程序精編108例
- Linux實戰
- Mobile First Design with HTML5 and CSS3
- 竹林蹊徑:深入淺出windows驅動開發
- 嵌入式系統原理及開發
- 嵌入式實時操作系統:RT-Thread設計與實現
- Windows 7案例教程
- VMware NSX Cookbook
- Android物聯網開發細致入門與最佳實踐
- μC/OS-III內核實現與應用開發實戰指南:基于STM32
- Windows Server 2008組網技術與實訓(第3版)
- Windows 8玩全不求人
- Administering ArcGIS for Server
- Instant Responsive Web Design