kubeadm of Kubernetes Series Builds k8s Cluster
Kubeadm Builds k8s Cluster
Note: The Kubernetes series uses 1.15 versions of kuberntetes.+
1 Master Node Installation
1.1 System Environment Configuration
1.1.1 Setting Host Name
hostnamectl set-hostname kmaster-01
hostnamectl set-hostname knode-01
hostnamectl set-hostname knode-02
vi /etc/ho ...
Added by kingnutter on Sat, 21 Sep 2019 10:00:01 +0300
Habor Installation Deployment + SSL
Habor is an open source container mirror warehouse of VMWare. In fact, Habor is an enterprise-level extension on Docker Registry, which has gained wider application. These new enterprise-level features include: management user interface, role-based access control, AD/LDAP integration and audit log, etc., which can meet the basic enterprise nee ...
Added by jikishlove on Fri, 20 Sep 2019 11:20:51 +0300
Using ELK Stack to Collect K8S Platform Logs for Kubernetes Operations and Maintenance
Using elk Stack to collect k8s platform logs for kubernetes operations and maintenanceCatalog:
Which logs to collect
elk Stack Logging Scheme
How to collect logs in containers
Application Log Collection in k8S Platform
I. What logs are collected? * Component logs for k8s systems such as those under kubectl get cs controller-manager,schedu ...
Added by Volte6 on Mon, 16 Sep 2019 08:12:40 +0300
[Docker Actual Warfare] Constructing angular Development Environment Based on centos
What I want to share in this article is how to use docker to build a node development environment, so that the front-end students away from the local node, let his beloved partners do their own clean.
Why build a node development environment? The tit ...
Added by ryza_ on Sun, 15 Sep 2019 11:15:15 +0300
Docker Swarm from Deployment to Basic Operations
About Docker Swarm
Docker Swarm consists of two parts:
Docker Cluster: Organize one or more Docker nodes so that users can manage them in a cluster;
Application orchestration: There is a set of API s for deploying and managing containers;
Official information: https://docs.docker.com/swarm/
network diagram
The following is a typical Docker Sw ...
Added by fr8 on Fri, 13 Sep 2019 06:40:31 +0300
docker Deployment apollo Detailed Tutorial
1, foreword
I'm not going to talk about apollo in detail, on the official website. https://github.com/ctripcorp/... What I have said is very clear. I will not make an axe in this class. Little friends who do not know can go to the official website to learn about it.
This article is just a record of the way I deployed Apollo using docker and its ...
Added by rockofaith on Wed, 11 Sep 2019 16:18:31 +0300
Deployment of SpringBoot applications using Docker Compose
SpringBoot e-commerce project mall (20k+star) address: https://github.com/macrozheng/mall
abstract
Docker Compose is a tool for defining and running multiple docker container applications. With Compose, you can configure your application services with YAML files, and then with a command, you can deploy all the services you configure.
install
D ...
Added by creatives on Tue, 10 Sep 2019 06:12:52 +0300
Kubernetes Installation and Deployment Master
Links to the original text: https://blog.csdn.net/jiangbenchu/article/details/90769198
1. Modify the local/etc/hosts file
# Add (*) to / etc/hosts file
cat <<EOF >> /etc/hosts
172.26.48.4 k8s-master
172.26.48.5 k8s-node1
17 ...
Added by Kathy on Sun, 08 Sep 2019 15:35:59 +0300
CI/CD:Jenkins Pipeline Practice
Catalog
1 Jenkins2.X Pipeline
1.0 CI/CD
1.1 pipeline Brief Introduction
1.2 Jenkinsfile
1.3 Pipeline Grammar
1.3.1 scripted pipeline
1.3.2 Declarative Pipeline
1.4 Blue Ocean
Advantages of 1.5 Pipeline
2 Multi-branch Pipeline Practice
2.1 Con ...
Added by DanArosa on Sun, 08 Sep 2019 13:52:14 +0300
kunernets uses helm to install tiller trampling pit
helm installation reference:
https://www.kubernetes.org.cn/4619.html
Helm is composed of client-side command line tool and server-side tiller. Helm installation is very simple. Download the helm command line tool under / usr/local/bin of master node node 1. Download version 2.9.1 here:
wget https://storage.googleapis.com/kubernetes-helm/helm ...
Added by Phate on Fri, 06 Sep 2019 08:22:10 +0300