Prometheus Operator uses ServiceMonitor to manage monitoring configuration - 1

    Managing monitoring configurations using ServiceMonitor Modifying the monitoring configuration item is also one of the common operation and maintenance operations under Prometheus. In order to automatically manage the configuration of Prometheus, the Prometheus Operator uses the custom resource type ServiceMonitor to describe the info ...

Posted by sparq on Wed, 05 Jan 2022 14:19:02 +0100

k8s workload controller

k8s workload controller Workloads are applications running on kubernetes. Whether your load is a single component or multiple components working together, you can run it in a set of Pods in Kubernetes. In Kuberneres, pod represents a set of containers running on the cluster. Kubernetes Pods has a defined life cycle. For example, when a Pod ru ...

Posted by cody44 on Wed, 05 Jan 2022 13:56:04 +0100

Kubernetes3 - Pod life cycle, cluster controller

1, Pod life cycle Like independent application containers, Pod is also considered to be a relatively temporary (rather than long-term) entity. The Pod is created, given a unique ID (UID), scheduled to the node, and runs on the node until it is terminated (according to the restart Policy) or deleted.If a node dies, the Pod scheduled to the ...

Posted by xnor82 on Wed, 05 Jan 2022 13:13:43 +0100

Pod life cycle of Kubernetes(k8s)

What is the Pod lifecycle Like a stand-alone application container, pod is also considered a relatively temporary (rather than long-term) entity. The pod will be created, given a unique ID (UID), and dispatched to the node. The pod will run on the node until it is terminated (according to the restart Policy) or deleted. If a node dies, the ...

Posted by kjl-php on Wed, 05 Jan 2022 03:38:09 +0100

Container cluster k8s from introduction to mastery (Chapter 4)

Chapter IV introduction to actual combat This chapter describes how to deploy and access an nginx service in a kubernetes cluster. 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 kubernete ...

Posted by filburt1 on Tue, 04 Jan 2022 16:31:38 +0100

MacOS uses Docker to create MySQL master-slave database

1, Pull MySQL image Get the latest MySQL image through the terminal docker pull mysql/mysql-server 2, Create the directory corresponding to the MySQL database container configuration file We create a group of directories under the current user to store MySQL container configuration files (this step can be omitted under Linux). Refer to the ...

Posted by mrcaraco on Tue, 04 Jan 2022 09:51:57 +0100

kubernetes introduction practice - Ingress

ㅤㅤㅤ ㅤㅤㅤ ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ (reading without thinking is equal to eating without digesting. -- Polk) ㅤㅤㅤ ㅤㅤㅤ ㅤㅤㅤㅤㅤㅤㅤㅤㅤ This tutorial demonstrates how to use ingress-nginx To do cluster load balancing, domain name access and ssl. Ingress Ingress is an API object that manages the external access of s ...

Posted by sb on Tue, 04 Jan 2022 08:53:25 +0100

k8s - controller

Pod classification: Autonomous Pod: the pod will not be created after exitingPod managed by the controller: maintain the number of copies of the pod throughout the life cycle of the controller Controller type: Replication Controller and ReplicaSetDeploymentDaemonSetStatefulSetJobCronJobFull name of HPA: Horizontal Pod Autoscaler 1.Repli ...

Posted by aiwebs on Tue, 04 Jan 2022 03:10:09 +0100

Docker basic operation notes

dokcer structure diagram Docker includes three basic concepts: Image: Docker image is equivalent to a root file system. For example, the official image ubuntu:16.04 contains a complete set of root file system of the smallest system of Ubuntu 16.04.Container: the relationship between an Image and a container is like a class and instanc ...

Posted by dsandif on Tue, 04 Jan 2022 01:39:46 +0100

Installing k8s with kubedm under CentOS 7

kubeadm is a tool launched by the official community for rapid deployment of kubernetes clusters. This tool can complete the deployment of a kubernetes cluster through two instructions. Before you start, you need to meet the following conditions to deploy Kubernetes cluster machines: -One or more machines, operating system centos7 x-86_ x64 - ...

Posted by dhruvasagar on Tue, 04 Jan 2022 01:14:01 +0100