k8s cluster deployment and container application deployment

Because the departmental oa system is deployed in the form of multi tenancy in k8s, it usually only solves some common errors in k8s. I have always wanted to seriously study the deployment process of k8s. After all, I know that the problems can be solved faster after the deployment process, so I took the time to study it. 1, k8s common compo ...

Added by mosherben on Fri, 04 Mar 2022 01:42:14 +0200

Build a K8S cluster with single master and multiple node s in kubedm mode (K8S version: v1.20.1)

kubeadm is a tool launched by the official community for rapid deployment of kubernetes clusters. This tool can deploy a kubernetes cluster through two instructions: # Create a Master node kubeadm init # Add a Node to the current cluster kubeadm join <Master Nodal IP And ports > Build K8S cluster in kubedm mode Building a K8s cl ...

Added by irishdreaming on Mon, 03 Jan 2022 00:55:42 +0200

Kubedm rapid deployment of kubernetes cluster

1, Three deployment modes officially provided by kubernetes minikube Minikube is a tool that can quickly run a single point of Kubernetes locally. It is only used by users who try Kubernetes or daily development. Deployment address: https://kubernetes.io/docs/setup/minikube/ kubeadm Kubedm is also a tool that provides kubedm init and kubedm ...

Added by HhAaZzEeYy on Tue, 14 Dec 2021 23:37:25 +0200

ubuntu-20.04.3 installing kubernetes(k8s) clusters using kubedm

ubuntu-20.04.3 installing kubernetes(k8s) clusters using kubedm 1. Initialize virtual machine environment Use VM VirtualBox to install ubuntu-20.04.3-live-server-amd64.iso image and create three virtual machines: abcMaster: 192.168.0.100abcNode1: 192.168.0.115abcNode2: 192.168.0.135 Uniformly modify the root user password sudo passwd root ...

Added by ORiGIN on Sun, 19 Sep 2021 23:40:30 +0300