Spring Boot Admin Pit Drainage Guide
Spring Boot Admin 1.x has a rudimentary page that people can't bear to look straight at, but when it's updated to the 2.x series, it's as easy to use as a rebirth.
This blog records the pits I personally encountered in using Spring Boot Admin, each pit will be accompanied by a detailed filling method.
Environmental parameters:
Spring Boot 2 ...
Posted by mmonaco on Sun, 04 Aug 2019 20:50:26 -0700
kubeadm Build Highly Available kubernetes 1.15.1
role
IP
role
operating system
Remarks
192.168.10.210
master
CentOS 7
haproxy,keepalived master
192.168.10.211
master
CentOS 7
Haproxy, keep alived ready
192.168.10.212
master
CentOS 7
Haproxy, keep alived ready
192.168.10.213
node
CentOS 7
Do Nodes Only
Host preparation:1. Install necessary software and upgrade all software
yum - ...
Posted by kryles on Sun, 04 Aug 2019 09:23:16 -0700
Installing Kubernetes1 with kubeadm
Installing Kubernetes 1.13.3 using kubeadm
Preparatory environment: two CentOS 7 system servers, 2 cores, 2G
host name
Ip
role
K8s-master
192.168.2.7
K8s master node
K8s-node1
192.168.137.4
K8s slave node 1
Docker version: 1.18.3
Kubernetes Version: 1.13.3
(1) Preparations
(1) All nodes ...
Posted by callisto11 on Thu, 01 Aug 2019 20:29:52 -0700
Docker Beginner Practice
Collect all the information on the Internet, organize some steps, personal records, memorandums!
Install Docker
centos7 installs docker
Refer to https://www.runoob.com/docker/centos-docker-install.html and follow these steps for installation
Remove the old version
yum remove docker \
docker-cl ...
Posted by iacataca on Sat, 27 Jul 2019 03:00:51 -0700
kubernetes CRD is so simple
Original address
Extending kubernetes is the two most commonly used and most needed things to master: custom resources CRD and adminsion web hook. This article teaches you how to master CRD development in 10 minutes.
kubernetes allows users to customize their own resource objects, just like deployment stateful settings, which are widely used. F ...
Posted by metin on Fri, 26 Jul 2019 21:15:10 -0700
Construction of k8s_v1.15.0_HA Cluster Foundation Environment
The first time I wrote a blog in Yunlu community, I took the process of building Kubernetes high-availability cluster infrastructure to try. Haha.First, the configuration is briefly introduced: proxy uses ipvs, network uses calico, stacked etcd cluster, and apiserver uses haproxy+keepalived for load balancing
My github link https://github.com/J ...
Posted by Jarl on Wed, 24 Jul 2019 23:40:26 -0700
Docker Learning Notes: Installation and Basic Usage
I. Installation
1.1 Install docker-ce on centos7
Check system and kernel version
[root@myhost img1]# cat /etc/redhat-release
CentOS Linux release 7.3.1611 (Core)
[root@myhost img1]# uname -r #Kernel version must be above 3.10, centos7 just meets.
3.10.0-514.21.1.el7.x86_64
Execute the following commands in turn
#Adding Pac ...
Posted by steelerman99 on Tue, 23 Jul 2019 19:50:23 -0700
docker log monitoring
Log Processing Mechanism
Let's first look at the mechanism of docker log processing. When a container is started, it's actually a sub-process of docker daemon. docker daemon can get the standard output of the process in your container. When it gets the standard output, it will process it through its own LogDriver module, the way LogDriver s ...
Posted by raahatazim on Mon, 22 Jul 2019 08:56:43 -0700
Installation of Kubernetes 1.15 full version under centos7
Introduction to Kubernetes
Kubernetes (K8S) is an open source container cluster management system, which can realize the functions of automatic deployment, automatic expansion and maintenance of container cluster. It is not only a container layout tool, but also a new distributed architecture leading sc ...
Posted by mdkelly_komex on Sun, 21 Jul 2019 04:34:35 -0700
kubernetes High Availability Cluster (Multi master, v1.15 Official Latest Edition)
Introduction
Kubernetes has been operating in our production environment for nearly a year, and is now running steadily. From the construction of the system to the migration of the project, there have been many problems. The production environment uses multiple master nodes to achieve high availability of kubernetes, and uses haproxy+keepaliv ...
Posted by anupamsaha on Tue, 09 Jul 2019 17:29:03 -0700