Basic concepts of docker/kubernete/kata-container
Kubereters
An open-source system for automating deployment, scaling, and management of containerized applications;
Traditional >> Hypervisor >> Container
Traditional:
No way to define resource boundaries for applications in a physical server before, run each applications on a different physical server;
Hypervisor:
Will run multi VMs on a single physical server's CPU;
Allow applications to be isolated between VMs and provides a level of securiy as the infomation of one application cannot be freely accessed by another application;
Each VM is a full machine running all the components, including its own operating system;
Container:
Have relaxed isolation properties to share the operating system among the applications;
Lightweight;
A container has its own filesytem/CPU/memory/process space/..
Are portable across clouds and OS distributions because they are decoupled from the underlying infrastrucure;
Benifits of containers:
1. Agile application creation and deployment: increased ease and efficiency of container image creation compared to VM image use
2. Continuous development, integrations and deployment:
provide for reliable and frequent container image build and deployment with quick and easy rollbacks;
3. Dev and Ops separation of concerns: create application container images at build/release time rather than deployment time, thereby decoupling applications from infrastructure;
4. Obervability not only surfaces OS-level information and metrics, but also application health and other signals;
5. Environmental consistency across development, testing, and production; Runs the same on a laptop as it does in the cloud;
6. Cloud and OS distribution portabilty: Runs on Ubuntu, RHEL, CoreOS, on-prem, Google Kubernetes Engine, and anywhrere else;
7. Application-centric management;
8. Loosely coupled, distributed;
9. Resource isolation;
10. Resource utilization;
Benefits of Kubernetes:
1. Service discovery and load balancing
kubernetes expose a container using the DNS name or using their own IP address;
if traffic to a container is high, kubernetes is able to load balance and distribute the network traffic so that the deployment is stable;
2. Stroage orchestartion
automatically mount a storage system of local storages/public cloud providers/..
3. Automated rollouts and rollbacks
automake kubernets to create new containers
4. Self-healing
restart fail containers, kill no-respond containers;
5. Automatic bin packing
tell kubernetes how much CPU and RAM each container needs, kubernets can fit containers onto your nodes to make the best use of you resources;
Kubernetes Master
When deploying kubernetes, we wil get a cluster, which is a set of machines (nodes),
that run containerzed applications managed by kubernetes.
A cluster has at least one worker node and at least one master node;
Kubernetes Master is a collection of three processes that run on a single node in your cluster, which is designed as the master node;
Three processes:
Kube-apiserver;
Kube-controller-manager;
Kube-scheduler;
Individual non-master node in cluster run two processes:
which communicates with the Kubernetes Master;
The primary node agent that runs on each node; It can register the node with tha apiserver using one of
the host name;
a flag to override the hostname;
specific logic for a cloud provider;
a network proxy which reflects Kubernetes networking services on each node;
Kubernets network proxy runs on each node, this relects services as defined in the Kubernetes API on each node
and can do simple TCP/UDP and SCTP stream forwarding or round robin TCP/UDP/SCTP forwarding across a set of backends/
Service cluster IPs and ports are currently found through Docker-links-compatible
Kubernetes Objects
Kubernetes contains serveral abstractions representing the state of system;
Basic Kubernetes objects include:
Kata-container
An open-source project and community working to build a standard implement of lightweight VM that feel and perform like containers, but provide the workload isolation and security advantages of VMs;
Kata container Components
- Agent -- The Kata-agent runs inside the virtual machine and sets up the container environment
- KSM throttler -- An optional utility that monitors containers and deduplicates memory to max container density on a host
- Proxy -- A process running on the host and co-ordinates access to the agent running inside the VM
- Runtime -- Be invoked by a container manager and provides high-level verbs to manage containersd
- Shim -- A process that runs on the host, acts as though it is the workload ( which actually runs inside the VM), required to be compliant with th expecations of the OCI runtime sepc
- Hypervisor --
- Kernel -- HV uses a linux kernel to boot the guest image
Docker
Following storage drivers:
- overlay2 is the preferred storage driver, for all currently supported linux distributions, and requires no extra conf
- aufs is the preferred stroage driver for Docker 18.06 or older, when running on Ubuntu 14 on Kernel 3.13 which has no support or ovrlay2
- devicemapper is supported, but requires direct-lvm for production environments, because loopback-lvm, while zero-conf, has very poor performance.
Basic concepts of docker/kubernete/kata-container的更多相关文章
- Kata Container 介绍
docker容器,性能高,不安全:VM虚拟机,安全性好,性能损耗大:Kata Container轻量级虚拟机的容器,即安全,性能也高. 开源容器项目Kata Containers,旨在将虚拟机(VM) ...
- Basic Concepts of Block Media Recovery
Basic Concepts of Block Media Recovery Whenever block corruption has been automatically detected, yo ...
- docker的网络-Container network interface(CNI)与Container network model(CNM)
Overview 目前围绕着docker的网络,目前有两种比较主流的声音,docker主导的Container network model(CNM)和社区主导的Container network in ...
- (二)Basic Concepts 基本概念
Basic Concepts There are a few concepts that are core to Elasticsearch. Understanding these concepts ...
- Docker入门03——Container
1 启动容器 1.1 新建并启动 1.2 启动已终止容器 2 后台运行 3 终止 4 进入容器 5 导入和导出 5.1 导出 5.2 导入 6 删除 1 启动容器 1.1 新建并启动 docker r ...
- CMUSphinx Learn - Basic concepts of speech
Basic concepts of speech Speech is a complex phenomenon. People rarely understand how is it produced ...
- docker Cannot start container [8] System error: exec format error
docker Cannot start container [8] System error: exec format error 学习了:https://www.aliyun.com/jiaoch ...
- Docker 容器(container)
版权所有,未经许可,禁止转载 章节 Docker 介绍 Docker 和虚拟机的区别 Docker 安装 Docker Hub Docker 镜像(image) Docker 容器(container ...
- Docker实现退出container后保持继续运行的解决办法
现象: 运行一个image,例如ubuntu14.04: 1 docker run -it --rm ubuntu:14.04 bash 退出时: 执行Ctrl+D或者执行exit 查看线程: 1 d ...
随机推荐
- 测试函数——python编程从入门到实践
测试函数 学习测试,得有测试的代码.下面是一个简单的函数: name_function.py def get_formatted_name(first, last): ""&quo ...
- Redis初识01 (简介、安装、使用)
一.Reids介绍 redis是一个key-value存储系统.和Memcached类似,它支持存储的value类型相对更多,包括string(字符串).list(链表).set(集合).zset(s ...
- go 指针 通过指针修改int类型的值
指针的定义 :var p *int 取指针的值 :*p ------------------------------------------------------------------------ ...
- JavaWeb项目之多条件过滤
相信很多同学在学习java基础之后,面对各种项目还是相当头疼,那今天我将手把手教你学会JavaWeb项目中的多条件过滤,希望你能在与我实战的过程中积累经验,更进一步. 分页查询 需求分析:在列表页面中 ...
- mysql连接不释放
环境: 持久层:JPA 数据库连接池:druid 数据库中间件:Mycat 数据库:Mysql 报错: Unable to acquire JDBC Connection 排查步骤: 方法一: 1.d ...
- 转:Windows下交换CapsLock和左ctrl
Windows下交换CapsLock和左ctrlHKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout中添加Scanco ...
- ELK学习笔记之logstash将配置写在多个文件
0x00 概述 我们用Logsatsh写配置文件的时候,如果读取的文件太多,匹配的正则过多,会使配置文件动辄成百上千行代码,可能会造成阅读和修改困难.这时候,我们可以将配置文件的输入.过滤.输出分别放 ...
- mongoDB对没有字段的记录新增字段
db.getCollection('ClassRecordOneDetail').updateMany({'synState':{'$exists':false}},{'$set':{'synStat ...
- MEF在WCF REST中实际应用2(Global.asax注册)
IOCContainer文件: public class IOCContainer { /// <summary> /// 容器 /// </summary> public s ...
- C# vb .net实现旋转特效滤镜
在.net中,如何简单快捷地实现Photoshop滤镜组中的旋转特效呢?答案是调用SharpImage!专业图像特效滤镜和合成类库.下面开始演示关键代码,您也可以在文末下载全部源码: 设置授权 第一步 ...