How to compile TensorFlow C++ API / configure a Docker image with TensorFlow C++ API (r1.14)

Preface For most machine learning enthusiasts, TensorFlow (TF) is a very good Python open source machine learning framework. But for some developers, they often need to train their models in Python environment and deploy them in C++ environment. Do ...

Posted by techtheatre on Tue, 13 Aug 2019 23:57:04 -0700

Spring Cloud Config Learning

Learning Notes for "Spring Cloud and Docker Micro Service Architecture Actual Warfare" Config Client In the previous article, we have written how that client of Config Server accesses Config Server and gets the corresponding configuration.Let's take a look Integrate <dependency> <groupId>org.springframe ...

Posted by Pixelsize on Sat, 10 Aug 2019 21:06:43 -0700

Deploy java project within 4 k8s

One is to create nfs (maste node operation, two node nodes also need to be installed) 1 First install an nfs server and configure the shared directory. [yx@tidb-tidb-02 ~]$ cat /etc/exports /home/yx/hnf *(rw,no_root_squash) //Then start nfs 2 Then create a dynamic feed of NFS PV on master, requiring three files, class.yaml deployment.yaml rba ...

Posted by tom2oo8 on Sat, 10 Aug 2019 11:22:46 -0700

docker operation command Daquan and background parameters

I. Command Line You can get help information from the command line by running docker or docker help command (we take CentOS as an example): [root@iz2ze2bn5x2wqxdeq65wlpz ~]# docker help Usage: docker [OPTIONS] COMMAND A self-sufficient runtime for containers Options: --config string Location of client config files (d ...

Posted by scottrad on Fri, 09 Aug 2019 04:01:22 -0700

Docker Integrated Deployment Gitlab+spring Cloud+config Unified Configuration Center

Docker Integrated Deployment (II) Gitlab+spring boot+config Unified Configuration Center 1. Build config project on gitlab 2. Establishment of spring config project by IDEA Modules requiring configuration files in the configuration center Packaging and deploying the service file module of config clie ...

Posted by neal.pressley on Fri, 09 Aug 2019 02:43:15 -0700

Record a sentry upgrade history

Start at: My blog cause IOS colleagues said he found a bug in sentry. It was said that the debug file prompt was uploaded successfully because of the bug of 9.0.0, but the website found that there was no upload at all. So I started my upgrade. Investigation and research Because my Sentry is not only used on the server side, but also on the cli ...

Posted by ajfton on Wed, 07 Aug 2019 08:06:11 -0700

kubeproxy source code analysis

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 ...

Posted by cutups on Wed, 07 Aug 2019 00:43:36 -0700

docker creates spring boot image

Links to the original text: http://www.ityouknow.com/springboot/2018/03/19/spring-boot-docker.html   The development of Docker technology provides a more convenient environment for micro services to land on the ground. Deploying Spring ...

Posted by dlkinsey85 on Tue, 06 Aug 2019 02:40:09 -0700

swarm basic configuration

Prepare three virtual machines, corresponding network conditions are as follows: IP address host name Effect 172.18.74.26 manager Management Node 172.18.74.29 g160402 worker 172.18.74.25 u180402 worker Modify the host name according to the above conditions and add the parsing configuratio ...

Posted by ltoto on Mon, 05 Aug 2019 23:37:44 -0700

Introducing the hierarchical structure of Docker images and creating them (docker commit and docker file)

1. Introduce the hierarchical structure of Docker image: (1) docker mirror: The Docker image is a read-only Docker container template, which contains the file system structure and its content needed to start the Docker container, so it is the basis for starting a Docker container. Docker image file ...

Posted by solaris77 on Mon, 05 Aug 2019 02:56:12 -0700