Kubedm deployment k8s

catalogue 1, Deploy docker steps 1. Operations on the master node 2. Operation on node1 node 3. Operation on node2 node 2, Install kubedm, kubelet, and kubectl 1. Specify installation source 2. Local mapping / etc/hosts 3. Specify installation version 4. Set startup and self startup 5. Close swap partition 6. The chain that passes br ...

Added by Ken2k7 on Thu, 30 Dec 2021 03:37:51 +0200

If a worker wants to do well, he must first sharpen his tools, Minikube

If a worker wants to do well, he must first sharpen his tools, Minikube preface With the development of container technology, more and more enterprises choose to deploy applications using containers. Application deployment is simple, but how to manage a large number of container changes? The operation and maintenance personnel can't opera ...

Added by rotwyla98 on Thu, 30 Dec 2021 01:02:51 +0200

Kubernetes binary deployment (theory part, detailed deployment steps in the next article ~)

Kubernetes binary deployment 1, Environmental preparation k8s colony master01: 192.168.80.10 kube-apiserver kube-controller-manager kube-scheduler etcd k8s colony master02: 192.168.80.20 k8s colony node01: 192.168.80.11 kubelet kube-proxy docker flannel k8s colony node02: 192.168.80.12 etcd Cluster node 1: 192.168.80.10 etcd e ...

Added by langemarkdesign on Wed, 29 Dec 2021 18:10:44 +0200

Resource scheduling (nodeSelector, nodeAffinity, tail, Tolrations)

Resource scheduling (nodeSelector, nodeAffinity, tail, Tolrations) 1.nodeSelector nodeSelector is the simplest way to constrain. nodeSelector is pod A field of the spec Use -- show labels to view the labels of the specified node [root@master haproxy]# kubectl get node node1 --show-labels NAME STATUS ROLES AGE VERSION LABEL ...

Added by AE117 on Mon, 27 Dec 2021 01:57:40 +0200

Application of kubernetes workload controller

What is the workload controller Workload Controllers is an abstract concept of K8s, which is used for higher-level objects, deployment and management of Pod Common workload controllers: Deployment: stateless application deploymentStateful set: stateful application deploymentDaemon set: ensure that all nodes run the same PodJob: one time t ...

Added by rgilchrist on Sun, 26 Dec 2021 19:47:59 +0200

k8s workload controller

k8s workload controller 1.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 cyc ...

Added by Skor on Sun, 26 Dec 2021 11:06:10 +0200

Kubernetes workload controller

Workload Controller Workload Controllers are an abstract concept of K8s for deploying and managing Pod s at higher levels of objects. Common workload controllers: Deployment: Stateless application deploymentStatefulSet: Stateful application deploymentDaemonSet: Make sure all Node s run the same PodJob: One-time taskCronjob: Timed tasks Cont ...

Added by gchouchou on Sat, 25 Dec 2021 21:48:24 +0200

k8s resource list defines haproxy load balancing

k8s resource list defines haproxy load balancing Core resources of k8s workload type resource PodReplicaSetDeploymentStatefulSetDaemonSetJobCronjob Service discovery and load balancing resources ServiceIngress Configure storage related resources Storage Volume: cloud storage Amazon Elastic Block Store SANGluster (distributed storage) ...

Added by fatywombat on Sat, 25 Dec 2021 08:08:01 +0200

Basic Introduction to kubernetes and Common Commands of kubectl

Basic Introduction to kubernetes and Common Commands of kubectl pod classification of k8s There are two categories of pod s: Autonomous podController managed pod Autonomous pods are managed by k8s manager, while static pod s are created and managed by kubelet Autonomous pod Autonomous pods always run in the foreground and are managed ...

Added by Drannon on Sat, 25 Dec 2021 00:42:34 +0200

k8s restart strategy, health check, environment variable, initialization container

Basic concepts of Pod Pod is the smallest unit created and managed by Kubernetes. A pod consists of one container or multiple containers, which share storage and network. Pod features A Pod can be understood as an application instance that provides servicesThe container in the Pod is always deployed on one NodeThe containers in the Pod s ...

Added by scarface222 on Fri, 24 Dec 2021 06:42:44 +0200