12 2017 档案
摘要:HTTP 协议有一个缺陷:通信只能由客户端发起,做不到服务器主动向客户端推送信息。 这种单向请求的特点,注定了如果服务器有连续的状态变化,客户端要获知就非常麻烦。我们只能使用"轮询":每隔一段时候,就发出一个询问,了解服务器有没有新的信息。最典型的场景就是聊天室。 轮询的效率低,非常浪费资源(因为必
阅读全文
摘要:In order to continue our effort of being modular and well factored we don’t just provide the entire .NET Core platform as a single NuGet package. Inst
阅读全文
摘要:Deployments A Deployment controller provides declarative updates for Pods and ReplicaSets. You describe a desired state in a Deployment object, and th
阅读全文
摘要:ReplicaSet is the next-generation Replication Controller. The only difference between a ReplicaSet and a Replication Controller right now is the selec
阅读全文
摘要:Kubernetes:架构、基本概念。用于总体了解 Kubernetes系列之介绍篇:优势、用途 Kubernetes核心概念总结
阅读全文
摘要:Init Containers This feature has exited beta in 1.6. Init Containers can be specified in the PodSpec alongside the app containers array. The beta anno
阅读全文
摘要:api测试 https://developers.facebook.com/tools/explorer/517735271920003?method=GET&path=act_1107316072738457%2Finsights%3F%26fields%3Dclicks%2Cimpression
阅读全文
摘要:kubectl applykubectl getkubectl set image deployment/xxx -n ns echoservice=xxxkubectl deletekubectl logskubectl scale deployment nginx-deployment --re
阅读全文
摘要:For Client:docker exec Run a command in a running containerdocker images List imagesdocker import Import the image from a tarballdocker rm Remove one
阅读全文
摘要:This page provides an overview of Pod, the smallest deployable object in the Kubernetes object model. Understanding Pods How Pods manage multiple Cont
阅读全文
摘要:Images You create your Docker image and push it to a registry before referring to it in a Kubernetes pod. The image property of a container supports t
阅读全文
摘要:Nodes Node Status Addresses Phase Condition Capacity Info Management Node Controller Self-Registration of Nodes Manual Node Administration Node capaci
阅读全文
摘要:This page explains how Kubernetes objects are represented in the Kubernetes API, and how you can express them in .yaml format. Understanding Kubernete
阅读全文
摘要:Master Components kube-apiserver etcd kube-controller-manager cloud-controller-manager kube-scheduler addons DNS Web UI (Dashboard) Container Resource
阅读全文
摘要:Kubernetes is an open-source platform designed to automate deploying, scaling, and operating application containers. able to quickly and efficiently r
阅读全文
摘要:Docker is an open platform for developing, shipping, and running applications. Docker enables you to separate your applications from your infrastructu
阅读全文
摘要:how to network your containers. Launch a container on the default network Docker includes support for networking containers through the use of network
阅读全文
摘要:Make sure you have published the friendlyhello image you created by pushing it to a registry. We’ll be using that shared image here. Be sure your imag
阅读全文
摘要:Make sure you have published the friendlyhello image you created by pushing it to a registry. We’ll use that shared image here. Be sure your image wor
阅读全文
摘要:Make sure you have published the friendlyhello image you created by pushing it to a registry. We’ll be using that shared image here. Be sure your imag
阅读全文
摘要:Docker学习笔记 — Swarm搭建Docker集群 Swarm在schedule节点运行容器的时候,会根据指定的策略来计算最适合运行容器的节点,目前支持的策略有:spread, binpack, random. Random顾名思义,就是随机选择一个Node来运行容器,一般用作调试用, spr
阅读全文
摘要:Make sure you have published the friendlyhello image you created by pushing it to a registry. We’ll use that shared image here. Be sure your image wor
阅读全文
摘要:Document An image is a lightweight, stand-alone, executable package that includes everything needed to run a piece of software, including the code, a
阅读全文
摘要:EPPlus:网站 Supported Functions Excel Merge Operate public class ExcelMergeOperate { private static Logger _logger = LogManager.GetCurrentClassLogger();
阅读全文
摘要:CsvHelper:nuget地址 csv导出类||生成类 public class CSVHeader { public string head1 { get; set; } public string head2 { get; set; } public string head3 { get;
阅读全文