Configure redisCluster cluster

1. Install Redis image docker pull yyyyttttwwww/redis 2. Create net2 network segment docker network create --subnet=172.19.0.0/16 net2 3 create a node Redis container #Rename the redis image: docker tag docker.io/yyyyttttwwww/redis redis #Delete old redis docker rmi docker.io/yyyyttttwwww/redis #Create 6 redis containe ...

Posted by shana on Sat, 14 Dec 2019 19:18:14 +0100

Building the source code analysis environment of btcpool ore pool

Chain code and platform of Fabric 1.0 source code Notes 1. Overview of platforms The platforms code is centralized in the core/chaincode/platforms directory. core/chaincode/platforms directory, the programming language platform implementation of chain code, such as golang or java. Platform.go, platform interface definition, and platform related ...

Posted by djs1 on Thu, 12 Dec 2019 22:26:57 +0100

Attachment 012.Kubeadm deployment high availability Kubernetes

I. Introduction to kubeadm 1.1 overview Refer to attachment 003.Kubeadm deployment Kubernetes. 1.2 kubeadm function Refer to attachment 003.Kubeadm deployment Kubernetes. II. Deployment planning 2.1 node planning Node hostname IP type Operation service k8smaster01 172.24.8.71 Kubernetes mas ...

Posted by mastermike707 on Tue, 10 Dec 2019 05:58:14 +0100

Docker common command quick reference manual

Record the daily use commands of docker. This article is mainly for linux + mac operating system. It is not sure whether window is applicable. Use it carefully <!-- more --> 1. docker process Three common case s are docker process start, stop and restart # Start docker service docker start # Shutdown docker service docker stop # Restart d ...

Posted by nykoelle on Mon, 09 Dec 2019 06:07:27 +0100

Application Policy Rules for k8s Autonomous pod

Autonomous pod application Most of the pods we come into contact with are controller-controlled pods, so today we are talking about autonomous pods (that is, pods created by yaml files), which are pods that control themselves and prevent them from being killed by the controller. 1. First, let's create a pod resource object for nginx: Before cr ...

Posted by Mijii on Sun, 08 Dec 2019 18:08:37 +0100

kubeadm Install k8s Complete Tutorial

[TOC] 1: Hardware environment preparation Three machines, planned for one master, two node s Sequence Number ip System Version hostname To configure Node type 1 192.168.159.210 CentOS 7.7.1908 (Core) vm210 2-core 2G Master 2 192.168.159.211 CentOS 7.7.1908 (Core) vm211 2-core 2G node 3 192.168.159.212 CentOS 7.7.1908 (Core) vm212 2-cor ...

Posted by Dimensional on Sun, 08 Dec 2019 01:44:50 +0100

The flanned network of k8s

#(1) generate flanneld certificate on the springboard machine #cd /temp/ssl/ cat > flanneld-csr.json <<EOF { "CN": "flanneld", "hosts": [], "key": { "algo": "rsa", "size": 2048 }, "names": [ { "C": "CN", "ST": "Hangzhou", "L": "Hangzhou", "O": ...

Posted by wpt394 on Sat, 07 Dec 2019 04:34:21 +0100

Quick download of Kubeflow image (V0.3.3)

Kubeflow is a machine learning framework for Kubernetes cluster. If you want to use it, you need to find a way to move the image to your own environment. At present, the container image of version 0.3.3 has been moved back. You can use the following script to download it from Aliyun's image service station: Kubeflow system container image (0 ...

Posted by MinDFreeZ on Wed, 04 Dec 2019 13:08:51 +0100

docker installs ElasticSearch (version 6.x)

Install ElasticSearch Pull the image and select version 6.5.0 $ docker pull elasticsearch:6.5.0 View mirroring $ docker images Start a container $ docker run --name elasticsearch -d -e ES_JAVA_OPTS="-Xms512m -Xmx512m" -p 9200:9200 -p 9300:9300 elasticsearch:6.5.0 42d639a089348b393b0cc912141ef357b6565996c5c4863e363f8729da229d7d Then visit GE ...

Posted by mrbaseball34 on Wed, 04 Dec 2019 08:46:25 +0100

Practical production environment: 1.13.3 latest k8s cluster deployment Heapster plug-in

This article, any image and yaml I use will send a link to the online disk for you to download and learn!Links: https://pan.baidu.com/s/1inmW... Password: 92uagithub: https://github.com/heyangguangYou can contact me directly if you have any questions: heyangev@cn.ibm.com Heapster is a collector that summarizes the data of C advisor on each Nod ...

Posted by nawal on Wed, 04 Dec 2019 03:18:54 +0100