helm deployment for kubernetes

Tags (space delimited): kubernetes series One: What is Helm 2: Helm deployment One: What is Helm Before using helm, deploying applications to kubernetes requires a cumbersome process of deployment, svc, and so on.Moreover, as many projects are microserviced, deployment and management of complex applications in containers becomes mor ...

Posted by vanderlay on Thu, 02 Apr 2020 23:47:02 -0700

rpm installs mysql and modifies mysql login password

Reprint https://blog.csdn.net/yejiyueshang/article/details/78745664 Linux version: CentOS 6.5 64 bit 1. Download MySQL wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.20-1.el6.x86_64.rpm-bundle.tar 1 2. decompression mkdir mysql cd mysql [root@localhost mysql]# tar -xvf mysql-5.7.20-1.el6.x86_64.rpm-bundle. ...

Posted by soianyc on Thu, 02 Apr 2020 21:20:22 -0700

redis-4.0.2 cluster building

Cluster building environment, one Centos7 virtual machine (192.168.217.128), six redis nodes redis-4.0.2 Install redis: follow the steps on the official website, and we won't talk about it here. Enclosed address https://redis.io/download, Note that there may be errors (redis tarError) during the installation process. ...

Posted by ndorfnz on Thu, 02 Apr 2020 06:30:40 -0700

Server initialization

1. What can server initialization do Turn off selinux ntp synchronization time Modify dns Configure ssh key Modify yum source Set host name Kernel parameter optimization: tcp, memory, routing, file handle Install the necessary software package: gcc-c++ cmake nmp wget vim jdk traceroute iotop, etc Prohibit root logi ...

Posted by Ark3typ3 on Thu, 02 Apr 2020 00:33:30 -0700

Nginx access log, log cutting, static file not logging and expiration time of LNMP schema (3)

1. Nginx access log 1.1 log format [root@host ~]# vim /usr/local/nginx/conf/nginx.conf / / search for log \ ... ... log_format combined_realip '$remote_addr $http_x_forwarded_for [$time_local]' ' $host "$request_uri" $status' ' "$http_referer" "$http_user_agent"'; #Combined? Realip is the log name # The contents of the log are followed ...

Posted by balkan7 on Wed, 01 Apr 2020 22:57:44 -0700

Installation and deployment of Nginx

1: Install toolkits wget, vim, and gcc yum install -y wget yum install -y vim-enhanced yum install -y make cmake gcc gcc-c++ 2: Download nginx installation package wget http://nginx.org/download/nginx-1.6.2.tar.gz 3: Install dependency package yum install -y pcre pcre-devel yum install -y zlib zlib-devel yum i ...

Posted by phpchamps on Wed, 01 Apr 2020 10:22:31 -0700

openstack learning notes II: basic environment construction

1. Environmental information:Three CentOS 7.6 virtual machines are built by using VMware Workstation in this environmentNode architecture: 1 controller node, 1 compute node, 1 cinder block storage node.The hardware configuration information is as follows: Node name ----------- CPU ----- memory ----- operating system ----- disk controller node ...

Posted by chuckym7 on Wed, 25 Mar 2020 20:29:59 -0700

Starting from the establishment of redis cluster

Recently, the redis cluster deployment has been used. By the way, you can learn a lot about redis. 1. Download redis and support the deployment of redis cluster from 3.0. tar xzvf redis-5.0.5.tar.gz #Download the source code and extract it through tar zxvf wget http://download.redis.io/releases/redis-5.0.5.tar.gz #Compile the source code th ...

Posted by Joel.DNSVault on Sat, 21 Mar 2020 09:18:20 -0700

Kubernetes cluster practice (08) upgrading cluster

ECK has not been deployed on the cluster for a long time and has not been officially put into use. Many problems have been found in the trial phase. Now it is about to be formally deployed. I want to upgrade the k8s cluster when it is formally deployed. After reading some data, since my cluster has only one master node, although it is very pow ...

Posted by flash-genie on Sat, 21 Mar 2020 07:14:15 -0700

The installation of ES cluster and the use of plug-ins

ES cluster installation 1)ELK is a log analysis platform, not a software, but a complete set of solutions. It is the acronym of three software products. ELK represents: Elasticsearch: responsible for log retrieval and storage Logstash: responsible for the collection, analysis and processing of logs Ki ...

Posted by pradeepmamgain on Sun, 15 Mar 2020 02:32:31 -0700