Kubernetes Installation Cluster and Deployment Application

Learning Video: Kubernetes (K8S) 3 hours fast start + practice, no waste pure dry goods Reference documents: https://k8s.easydoc.net/ Content description: What is kubernetes, when does it need to be, and its architecture.Install the kubernetes cluster in three different ways. Includes minikube, cloud platform and bare machine (3 serv ...

Posted by DjMikeS on Thu, 03 Feb 2022 19:19:38 +0100

vector of STL C ontainer

Preface C++ introduces the idea of object-oriented, and a class can better manage and manipulate some data structures than C. In C, we use fixed-length arrays and dynamic arrays from malloc to maintain a continuous collection of the same type of data In C++, based on the idea of object-oriented, classes for managing spatially continuous homo ...

Posted by Emperor_Jackal on Thu, 03 Feb 2022 18:50:48 +0100

K8S Learning (12) -- Pod scheduling

1, Pod scheduling By default, the Node on which a Pod runs is calculated by the Scheduler component using the corresponding algorithm. This process is not controlled manually. However, in actual use, this does not meet the needs of users, because in many cases, we want to control some pods to reach some nodes, so what should we do? This requir ...

Posted by whitehat on Wed, 02 Feb 2022 09:45:44 +0100

[C + +] string of STL container

preface C + + introduces the idea of object-oriented. Compared with C language, a class can better manage and operate some data structures. In C language, we use character array and string The library function in H is used to maintain a string. The data is separated from the method. Because the underlying space is maintained by itself, it may ...

Posted by docmattman on Wed, 02 Feb 2022 06:51:42 +0100

Docker Compose container orchestration

catalogue Docker Compose overview compose features Multiple isolated environments on a single host Preserve volume data when creating containers Recreate only changed containers Variables and moving combinations between environments yml file format Common fields of docker compose configuration docker compose common commands Docker ...

Posted by jskywalker on Wed, 02 Feb 2022 00:35:53 +0100

N skills to write more efficient Dockerfile | cloud effect engineer pointing North

Introduction: in the cloud native era, the construction and deployment of software are inseparable from Container technology. When it comes to containers, almost everyone subconsciously thinks of Docker. There are two very important concepts in Docker: Image and Container. The former is a static view, which packages the directory structure and ...

Posted by Giri J on Tue, 01 Feb 2022 10:10:21 +0100

Introduction to container technology overview of docker core technology

Container is simply a sandbox technology, which "loads" the application into the sandbox and encapsulates the application like a container, so that the applications will not interfere with each other, and the applications put into the sandbox are also convenient to "move". This paper introduces the core technologies related ...

Posted by mr_griff on Sun, 30 Jan 2022 17:48:38 +0100

[machine vision] HDevelop language foundation - container and reserved words

00. Contents 01. Reserved words The identifiers listed in table 8.25 are reserved words, and their use is strictly limited to their predefined meanings. They cannot be used as variable names. 02. Vessel overview Vector is a container that can hold any number of elements. All elements must have exactly the same variable type (i.e. tuple ...

Posted by amylou on Sun, 30 Jan 2022 16:25:16 +0100

Common deployment schemes of Kubernetes (XIV)

Python wechat ordering applet course video https://edu.csdn.net/course/detail/36074 Python actual combat quantitative transaction financial management system https://edu.csdn.net/course/detail/35475 1, Common deployment schemes Rolling update The service will not stop, but the old and new will coexist in the whole pod. Recreate ...

Posted by someone2088 on Sun, 30 Jan 2022 09:20:32 +0100

docker learning notes 1

This note refers to the series of tutorials of crazy God Theory in station B What is docker? Development based on GO language, open source project, container technology The difference between docker and virtual machine technology The traditional virtual machine can create a set of hardware and run a complete operating system. For example, ...

Posted by dlcmpls on Sat, 29 Jan 2022 11:51:33 +0100