Docker container monitoring coadvisor of container cloud series

There are many container monitoring tools. This paper mainly compares the characteristics and functions of cdadvisor, Weave Scope and Prometheus, and tests the use of each tool in combination with the deployment environment. There are many container monitoring tools. The following table compares the characteristics and functions of several m ...

Added by gva482 on Tue, 30 Nov 2021 03:18:30 +0200

Kubernetes detailed tutorial - Introduction to actual combat

4. Introduction to actual combat This chapter describes how to deploy and access an nginx service in a kubernetes cluster. 4.1 Namespace Namespace is a very important resource in kubernetes system. Its main function is to realize resource isolation of multiple environments or multi tenant resources. By default, all pods in the kubernetes cl ...

Added by richmlpdx on Sun, 28 Nov 2021 19:48:30 +0200

Kubernetes detailed tutorial -- detailed explanation of Pod

5. Detailed explanation of pod 5.1 Pod introduction 5.1.1 Pod structure Each Pod can contain one or more containers, which can be divided into two categories: The number of containers where the user program is located can be more or less Pause container, which is a root container for each Pod. It has two functions: It can be used as ...

Added by Viper76 on Sun, 28 Nov 2021 14:39:29 +0200

Docker series] docker learning 7, DockerFile writing and actual combat

Let's start learning about DockerFile DcokerFile is a file used to build a docker image. It is a command parameter script Steps to build a general docker image: 1. Write a dockerfile file 2. docker build builds into an image 3. docker run run image 4. docker push publish image (we can publish it to DockerHub or alicloud) Let's see how th ...

Added by coderage on Sun, 28 Nov 2021 04:57:04 +0200

Kubernetes Cluster Multi-tenant Resource Management

WeChat Public Number: Operations and Maintenance Development Story, Author: double winter 1. Overview Start with two important Pod parameters: CPU Request and Memory Request. In most cases, we do not define these two parameters when defining a Pod, and Kubernetes assumes that the Pod requires very few resources and can be scheduled on any a ...

Added by devangel on Wed, 24 Nov 2021 21:47:50 +0200

DRF framework serialization

brief introduction DRF (Django REST framework) is a powerful and flexible toolkit for building RESTful web APIs. It is a secondary development based on Django framework. It is called DRF framework or REST framework for short. characteristic It provides a powerful Serializer serializer, which can serialize and deserialize efficientlyIt provid ...

Added by loweauto on Tue, 23 Nov 2021 22:57:49 +0200

How does the partner system allocate memory

How does the partner system allocate memory Partner system The partner system is derived from the Solaris Operating System of Sun company. It is an excellent physical memory page management algorithm on the Solaris Operating System. However, good things are always easy to be stolen or imitated by others, and the partner system has also be ...

Added by power3 on Tue, 23 Nov 2021 09:52:28 +0200

836-C++STL container content summary

C++ STL container classification Use the following table to list the commonly used C++STL containers (including the newly introduced containers of C++11): Sequential container This section summarizes the contents of sequential containers. vector container content sorting Underlying data structure: an array whose memory can be expanded tw ...

Added by stylusrose on Thu, 18 Nov 2021 18:30:42 +0200

C + + -- Simulation Implementation of list

Interface Overview namespace NZB { // Simulation Implementation of list node template<class T> struct _list_node { _list_node(const T& val = T()); // Construction node //Member variable T _val; // data _list_node<T>* _next; // Backward pointer _list_node<T>* _prev; // Forward pointer ...

Added by brem13 on Thu, 18 Nov 2021 15:26:51 +0200

Envy [3] migrating from HAProxy to envy proxy

brief introduction This scenario is designed to support you to migrate from HAProxy to Envoy Proxy. It will help you apply any previous experience and understanding of HAProxy to Envoy. You will learn how to: Configure Envoy proxy server configuration and settings.Configure the Envoy agent to proxy traffic to external services.Configure acce ...

Added by Spaceman-Spiff on Tue, 16 Nov 2021 11:44:04 +0200