Dynamic Expansion of Cloud Disk Data Volume Using Ali Cloud CSI Plugin

Using cloud disks to store volumes often requires a cloud disk of appropriate capacity when the service is initialized, but as data grows, the capacity of the data disk cannot meet demand and needs to be expanded. In the expansion scenario of traditional applications, it is often necessary to stop the application manually, back up the data disk ...

Posted by Peter Anselmo on Wed, 12 Feb 2020 17:36:09 -0800

(enterprise environment deployment) K8S multi node deployment load balancing UI page

Enterprise environment deployment) K8S multi node deployment load balancing UI page Environment to prepare: 6 platform centos7 equipment:192.168.136.167 master01192.168.136.168 node1192.168.136.169 node2192.168.136.170 master02192.168.136.171 lb1192.168.136.172 lb2VIP: 192.168.1.100 Experimental steps: 1: Self signed ETCD ...

Posted by xiosen on Mon, 10 Feb 2020 07:01:12 -0800

Under Kubernetes cluster deployment

k8s general environmental plan Environmental equipment Two master nodes, two node nodes and two node nodes are installed with nginx for load balancing, failover and floating address vip Deployment process Turn off firewall and security functions systemctl stop firewalld.servicesetenforce 0 Copy the kubernetes directory to master2 (last exp ...

Posted by pullaratt on Mon, 10 Feb 2020 04:32:39 -0800

Kubernetes data persistence Storage Class creates PV automatically

Through Bo Wen Storage Volume of Kubernetes It can be seen that the process of Kubernets to realize data persistence is as follows:Build NFS underlying storage - > create PV - > create PVC - > create podFinally, the container in the pod will realize data persistence! From the above process, it seems that there is no problem, but after ...

Posted by icd_lx on Mon, 10 Feb 2020 01:10:55 -0800

kubernetes binary cluster deployment three -- load balancing scheduler deployment

Key points: 1. Experimental environment 2. Load balancing scheduler deployment 1, Experimental environment: Based on the previously deployed multi Master cluster architecture, deploy two scheduler servers (nginx is used here) to achieve load balancing: Deployment 1 of kubernetes binary cluster - deployment of etcd storage component and flan ...

Posted by micbox on Mon, 10 Feb 2020 00:30:53 -0800

Kubernetes cluster deployment -- binary cluster load balancing

Based on the previously deployed multi Master cluster architecture, deploy two scheduler servers (nginx is used here) to achieve load balancing:Again, the environment: role IP address master01 192.168.100.110 master02 192.168.100.109 Scheduler 1 (nginx01) 192.168.100.113 Scheduler 2 (nginx02 ...

Posted by edtlov on Sun, 09 Feb 2020 21:44:07 -0800

Install and configure Nginx under Windows, and set it to power on automatically

Installation and configuration of Nginx under Windows First, Download Process ellipsis Two, configuration First, enter the nginx installation directory (the same level of nginx.exe) and edit the conf/nginx.conf file gzip on; #Open gzip server_tokens off; ##Hide nginx version number server { listen 8888; ...

Posted by mkosmosports on Sun, 09 Feb 2020 06:47:16 -0800

Zabbix&LNMP installation configuration

Monitoring terminal operation #!/bin/bash #Install zabbix+LNMP # lnmp(){ #Turn off firewall & core security features systemctl stop firewalld.service systemctl disable firewalld.service &> /dev/null setenforce 0 sed -i "7cSELINUX=disabled" /etc/sysconfig/selinux #yum install nginx wget http://nginx.org/packages/centos/7/noarch/RPM ...

Posted by ccl on Fri, 07 Feb 2020 09:23:31 -0800

frp + nginx deploy http intranet penetration service

frp + nginx deploy http intranet penetration service 1, Foreword frp is a high-performance reverse proxy application developed in Go language, which can be used for intranet penetration. It supports tcp, udp, http and https. A web service deployed on the local machine can be mapped to an external n ...

Posted by djlfreak on Fri, 07 Feb 2020 02:40:24 -0800

Ansible script management (example explanation!!!)

inventory host list The default host list of ansible is the / etc/ansible/hosts file. The host list can be set manually or generated dynamically through Dynamic Inventory. Generally, the host name uses FQDN vim /etc/ansible/hosts [webserver] #Square bracket set group name www1.example.org #Define the monit ...

Posted by Arez on Mon, 03 Feb 2020 09:08:23 -0800