K8S cluster deployment -- learning notes on linux super brother video of station B

The notes are to learn and record according to the video of UP master linux super brother in station B. if there are mistakes and omissions, those in a good mood can point out them. https://www.bilibili.com/video/BV1yP4y1x7Vj?spm_id_from=333.999.0.0  Machine environment preparation: 2C4G virtual machine host nameNode iproleDeploy component ...

Posted by langemarkdesign on Fri, 03 Dec 2021 12:36:20 +0100

kubernetes notes Pod resource scheduling stain and tolerance

summary:Taints are key value attribute data defined on the node, which is used to make the node refuse to run Pod scheduling on it, unless the Pod object has the tolerance of accepting node taints. Tolerance tolerances are key value attribute data defined on the Pod object, which is used to configure its tolerable node stains, and the scheduler ...

Posted by mrobinson83 on Tue, 30 Nov 2021 15:46:58 +0100

Kubernetes detailed tutorial -- detailed explanation of Pod controller

6. Detailed explanation of pod controller 6.1 introduction to pod controller Pod is the smallest management unit of kubernetes. In kubernetes, it can be divided into two categories according to the creation method of Pod: Autonomous Pod: a pod directly created by kubernetes. This kind of pod will not exist and will not be rebuilt after delet ...

Posted by heavenly on Sun, 28 Nov 2021 21:51:01 +0100

Kubernetes detailed tutorial - data storage

8. Data storage As mentioned earlier, containers may have a short life cycle and are frequently created and destroyed. When the container is destroyed, the data saved in the container will also be cleared. This result is undesirable to users in some cases. In order to persist the container data, kubernetes introduces the concept of Volume. Vo ...

Posted by airo on Sun, 28 Nov 2021 14:15:22 +0100

Kubernetes runtime migration from docker to containerd

01 Preface Kubernetes (hereinafter referred to as k8s) announced that docker will be abandoned as a container after version 1.20, and the dockershim component will be completely removed in version 1.23 released at the end of 2021. Dockershim is a built-in component of kubelet. Its function is to make k8s it possible to operate dockers through ...

Posted by corruption on Sat, 27 Nov 2021 03:12:44 +0100

Introduction to Kubernetes

Introduction: This article is an introduction to kubernetes (replaced by k8s below). It will cover the architecture of k8s, cluster construction, an example of Redis, and a tutorial on how to develop an operator using operator SDK. In the process of the article, the concepts of Pod, Deployment, stateful set, etc. will be introduced. These conce ...

Posted by dukeu03 on Tue, 23 Nov 2021 05:18:40 +0100

How to view Kubernetes API traffic by grabbing packets

When we view and modify Kubernetes resources through kubectl, have you ever thought about the interface behind? Is there any way to probe these interactive data?The interface between kuberentes client and server is based on http protocol. Therefore, we only need to be able to capture and parse https traffic, and we can see kubernetes API traffi ...

Posted by cedtech23 on Mon, 22 Nov 2021 03:33:10 +0100

kind installation and use

Tips: after the following command is installed, you will be familiar with it by trying it several timeskind installation curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.9.0/kind-linux-amd64 chmod +x ./kind mv ./kind /${some-dir-in-your-PATH}/kind kubectl installation curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/st ...

Posted by apulmca2k4 on Wed, 17 Nov 2021 11:32:47 +0100

Kubernetes--Pod management and configuration apiversion: v1kind: configmapmetadata: Name: cm appvarsdata: apploglevel:

1, Configuration management of Pod       The best practice of application deployment is to separate the configuration information required by the application from the program, so that the application can be reused better, and better functions can be realized through different configurations. After the application is packag ...

Posted by apocryia on Sun, 07 Nov 2021 01:28:18 +0100

[Kubernetes] detailed description of monitoring management, log management and deployment efk [upgraded version of elk] of helm extension of k8s

explain A blog previously described the helm package of k8s in detail, as follows: [Kubernetes] k8s detailed description and operation of helm package management and application [helm installation, helm warehouse management and building private warehouse] Image and other files Monitoring management [prometheus] Frame description Dep ...

Posted by alsinha on Tue, 02 Nov 2021 07:27:29 +0100