Install SVN Version Control Service under Ubuntu

Today, the svn version control service is deployed in the Ubuntu environment. 1. Download and Install # apt-get install subversion 2. Creating directories # mkdir /home/svn # mkdir /home/svn/repository # chmod -R 777 /home/svn/repository 3. Creating warehouses # svnadmin create /home/svn/repository View the repository directory: # cd /home/svn/ ...

Added by ident on Mon, 02 Sep 2019 19:11:06 +0300

RKE production environment kubernetes cluster deployment

Cluster Introduction master Nodes: 10.20.10.103 name=cnvs-kubm-101-103 role: [controlplane,worker,etcd] user: k8suser 10.20.10.104 name=cnvs-kubm-101-104 role: [controlplane,worker,etcd] user: k8suser 10.20.10.105 name=cnvs-kubm-101-105 role: [controlplane,worker,etcd] user: k8suser //Cluster Management Node: 10.20.10.103 vip:10.20.10.253 ...

Added by Amitk on Sat, 31 Aug 2019 18:19:42 +0300

EFK Architecture of Logging System

Reference resources: dapeng Log Collection, Processing and Query Application Recently, according to dapeng's log management system, I think I'll try to build an EFK myself. Here I record my experience of trampling pits. Thank you very much. Ever_00,Yangyang_3720 Support and help from big boys Technical Selection Returning to the topic, we still ...

Added by soianyc on Thu, 29 Aug 2019 13:02:03 +0300

k8s Practice: Pod Resource Management

Environmental description: host name Operating System Version ip docker version kubelet version To configure Remarks master Centos 7.6.1810 172.27.9.131 Docker 18.09.6 V1.14.2 2C2G Remarks node01 Centos 7.6.1810 172.27.9.135 Docker 18.09.6 V1.14.2 2C2G Remarks node02 Centos 7.6.1810 172.27.9.136 Docker 18.09.6 V1.14.2 2C2G Remarks ...

Added by red-x on Thu, 22 Aug 2019 12:13:07 +0300

beats components of elastic are used

1.Filebeat Filebeat is mainly used for forwarding and centralizing log data. Filebeat is installed on the server as a proxy to monitor the log files or locations you specify, collect log events, and forward them to Elastic Search or Logstash for ind ...

Added by sguy on Thu, 15 Aug 2019 11:17:23 +0300

Simple use of docker image

Before using docker, we need to understand three core concepts of docker: mirror, container and warehouse. This chapter mainly introduces the use of docker mirrors. There are too many concepts on the Internet. View mirror information After installi ...

Added by superwormy on Tue, 13 Aug 2019 15:45:07 +0300

Dockerfile you must know

This article has been added to the Index of.NET Core on K8S Learning Practice Series Articles , you can click to see more articles related to container technology. 1. About Dockerfile The most common way to create mirrors in a Docker is to use a Dockerfile.Dockerfile is a description file of a Docker image, which we can understand as A, B, C, D ...

Added by nc_brox on Tue, 13 Aug 2019 05:32:25 +0300

Hand in hand to teach you how to write Kubernetes'golang service

Links to the original text: https://www.qikqiak.com/post/write-kubernets-golang-service-step-by-step/ We've talked a lot about the operation of kubernetes itself, but we haven't talked about how to write a complete kubernetes application ...

Added by Gamerz on Mon, 12 Aug 2019 07:08:00 +0300

k8s Practice: Controller

Environmental description: host name Operating System Version ip docker version kubelet version To configure Remarks master Centos 7.6.1810 172.27.9.131 Docker 18.09.6 V1.14.2 2C2G Remarks node01 Centos 7.6.1810 172.27.9.135 Docker 18.09.6 V1.14.2 2C2G Remarks node02 Centos 7.6.1810 172.27.9.136 Docker 18.09.6 V1.14.2 2C2G Remarks ...

Added by genesysmedia on Wed, 07 Aug 2019 13:33:31 +0300

kube-proxy source code parsing

kubernetes Off-line Installation Package, only three steps kube-proxy source code parsing ipvs has higher performance and stability than iptables mode. This paper focuses on the source code analysis of iptables mode. If you want to understand the principle of iptables mode, you can refer to its implementation. There is no difference in architec ...

Added by plaggypig on Wed, 07 Aug 2019 10:49:26 +0300