K8s cluster deployment experience: how to use Kubeadm to install Kubernetes at one time?

I believe that the first stumbling block many friends encounter when learning K8s is to install and deploy kubernetes. There are many and miscellaneous tutorials on the network, and because of the different equipment environment and many other problems, many friends, even if they follow the tutorial ste ...

Added by Person on Sat, 14 Mar 2020 06:20:51 +0200

Installation process of machine from zero to K8S cluster Worker node

Recently, a single node K8S was built based on Hyper-V virtual machine, and the process was not recorded This practice starts from scratch to build a K8S Slave node Installation process of Slave node in K8S cluster from zero Practice environment Install Linux system Linux distribution selection Hy ...

Added by mtmosier on Fri, 06 Mar 2020 09:18:24 +0200

Why do I use kustomize to manage Kubernetes yaml applications?

Kustomize is a tool to solve the application management problem of k8s yaml. kubectl has integrated kustomize since version 1.14. Before that, we had to install it ourselves. You can download the package of the corresponding operating system on GitHub for installation (https://github.com/kubernetes-sigs ...

Added by PakiGangsta on Tue, 03 Mar 2020 06:33:49 +0200

K-2 Kubernets Install dashboard Crater Log

After successfully deploying k8s, I intend to redeploy the k8s web UI: dashboard. The main deployment method on the web is some dashboard services generated by IT using yaml files.Then all the articles are a bit problematic, either because the steps are different, the content or file is out of date, or the author thinks that some content is un ...

Added by BAM1979 on Fri, 14 Feb 2020 04:10:01 +0200

k8s deployment UI interface deployment

The function of UI page in kubernetes platform K8s Web UI management interface can be better, more intuitive and more convenient for us to manage our k8s cluster. Experimental deployment Experimental environment lb01: 192.168.80.19 (load balancing server) lb01: 192.168.80.20 (load balancing server) Master01:192.168.80.12 Master01:192.168.80 ...

Added by updwebmaster on Thu, 13 Feb 2020 21:28:47 +0200

k8s deployment -- master node component deployment

Introduction to Kube API server components Kube API server is the data bus and data center of the whole system, which provides the addition, deletion, modification and query of k8s resource objects (pod,RC,Service, etc.) and HTTP Rest interfaces such as watch. Functions of Kube API server Provides REST API interface for cluster management ( ...

Added by morganchia on Mon, 10 Feb 2020 13:33:49 +0200

k8s deployment -- node component deployment

Introduction to kubelet components kubernetes is a distributed cluster management system. Every node needs to run a worker to manage the life cycle of the container. The worker program is kubelet The main function of kubelet is to obtain the desired state of pod/container on a node (what container to run, the number of copies to run, how to c ...

Added by gioahmad on Mon, 10 Feb 2020 10:19:01 +0200

kubernetes tutorial (4) node component installation

node related component installation docker installation Install the latest version of docker wget -qO- https://get.docker.com/ | sh kubelet installation Download the kubelet executable binary file and place it in the directory / opt/kubernetes/bin New directory / var/lib/kubelet Add kubelet.service file to / usr/lib/s ...

Added by mwalsh on Sun, 09 Feb 2020 21:49:43 +0200

Kubernetes multi node binary network deployment (example!!!)

Previous review To deploy a k8s multi node, you must first deploy a k8s cluster with a single master node For details, please refer to: blog.csdn.net/caozhengtao1213/article/details/103987039 Content of this article 1. Deploy Master2 2.Nginx load balancing deployment keepalived service 3.node no ...

Added by killsite on Sun, 09 Feb 2020 15:05:17 +0200

K8s full multi-node deployment (wirenet combat!Include troubleshooting!)

K8s Multi-node Deployment --> Load Balancing Using Nginx Service --> UI Interface Display Special note: a k8s cluster with a single master must be deployed before this experiment can beginSee my previous blog: https://blog.csdn.net/JarryZho/article/details/104193913 Environment Deployment: Related packages and documentation: Link: https ...

Added by DBHostS on Fri, 07 Feb 2020 20:01:25 +0200