Deploy nacos cluster in k8s (official document version)

Xiaobai anti forgetting Recently, I learned the basic usage of k8s and wanted to practice with an actual springCloud project. As a result, I was directly stopped in the first level registration center. Fortunately, there are official configuration documents, but there are still some holes in the configuration process, so I record it here. Deplo ...

Added by gwizz on Sun, 06 Mar 2022 12:10:02 +0200

How does Istio service grid handle security issues?

How does Istio service grid handle security issues? This article is translated from https://istio.tetratelabs.io/blog/istio-security/> In this blog, I will explain how Istio solves problems such as traffic encryption, providing flexible service access control, configuring two-way TLS and fine-grained access policy and audit. Istio securit ...

Added by mr. big on Sat, 05 Mar 2022 17:16:10 +0200

k8s introduction and deployment

Kubernetes basic concepts 1.kubernetes has the following features: Service discovery and load balancing Kubernetes can use DNS name or its own IP address to expose the container. If the traffic entering the container is large, kubernetes can load balance and distribute network traffic, so as to stabilize the deployment.Storage orchestration K ...

Added by JsF on Sat, 05 Mar 2022 10:10:18 +0200

Detailed explanation of k8s pod principle

Introduction to Kubernetes Pod Pod literally translates as a pod. You can think of the container as the beans in the pod. Wrapping one or more closely related beans together is a pod. In k8s, we will not directly operate containers, but package containers into pods for management. Introduction and principle of Pod Is the smallest API obj ...

Added by socialmatrix on Sat, 05 Mar 2022 06:59:06 +0200

Kubernetes - data storage

summary   the life cycle of containers may be very short and will be created and destroyed frequently. When the container is destroyed, the data saved in the container will also be cleared. This result is undesirable to users in some cases. kubernetes introduces the concept of Volume in order to persist the data of the container. &ems ...

Added by kvnirvana on Fri, 04 Mar 2022 20:17:04 +0200

The most detailed summary of K8S learning notes (2021 latest edition)

although Docker It has been very powerful, but there are still many inconveniences in practical use, such as cluster management, resource scheduling, file management and so on. In this era of containers, many solutions have emerged, such as Mesos, Swarm, Kubernetes and so on, among which Google is open source Kubernetes As a big brother. kub ...

Added by wellscam on Fri, 04 Mar 2022 14:45:58 +0200

k8s resource list

In k8s, yaml files are generally used to create pod s that meet our expectations Called resource list Brief description Is a highly readable format used to express data sequences. YAML actually means: it is still a markup language, but in order to emphasize this language, count Data as the center, rather than focusing on markup language Basic ...

Added by estan on Fri, 04 Mar 2022 04:52:57 +0200

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

Kubernetes(k8s) -- cluster deployment

catalogue 1, Introduction to Kubernets 1.1 Kubernetes advantages 1.2 Kubernetes architecture design 1.3 kubernete service architecture 2, Kubernetes deployment 2.1 basic environment configuration 2.2 disable swap partition 2.3 configure yum source of kubernetes and install components 2.4 setting kubernetes command completion function ...

Added by broheem on Thu, 03 Mar 2022 09:41:11 +0200

Actual combat: CSI volume management - 2022.3.2

catalogue Experimental environment Experimental environment: 1,win10,vmwrokstation Virtual machine; 2,k8s Cluster: 3 sets centos7.6 1810 Virtual machine, 1 master node,2 individual node node k8s version: v1.22.2 containerd://1.5.5 Experimental software Link: https://pan.baidu.com/s/1WOur –I9x2cfJugqPGzq1g?pwd=4kyi Extract ...

Added by stodge on Wed, 02 Mar 2022 16:31:44 +0200