Configuration of golang module in space MCS

Summary Goang's official package management has been supported since version 1.11. Several attempts have been made before, but the results are not satisfactory, and dep has been used to manage the package. With the release of version 1.13 recently and the increasing number of official management methods using go module, dep has not been develop ...

Posted by zeeshan_haider000 on Wed, 11 Sep 2019 06:40:29 +0200

Spring Boot External Servlet Container and docker

It mainly includes the steps and principles of using the external servlet container, and the introduction and core concepts of docker. 1. Use an external Servlet container Embedded Servlet Containers: Applications typed into executable jar s Advan ...

Posted by superpimp on Wed, 11 Sep 2019 05:41:35 +0200

Using Docker file to build Docker images for SpringBook applications

SpringBoot e-commerce project mall (20k+star) address: https://github.com/macrozheng/mall brief introduction Last time I wrote an article Building Docker Image with Maven Plug-in It describes the way to construct docker image through docker-maven-plugin, which relies on the self-built Registry image warehouse. This article describes another wa ...

Posted by Black Rider on Sun, 08 Sep 2019 14:10:09 +0200

Docker - Building Private Warehouses

Articles Catalogue @[TOC] The main purpose of establishing private warehouse is to use it by oneself or company, download it quickly, and do not need to download it abroad. convenient The main purpose of establishing private warehouse is to use i ...

Posted by gigas10 on Sat, 07 Sep 2019 10:25:19 +0200

Step by Step! Kubernetes Continuous Deployment Guide

This paper is the Kubernetes continuous deployment workflow, which is summarized step by step from zero basis through the author's own practice. The article begins with the preparation of tools in the early stage, and then proceeds to the final deployment of repository, testing, mirror building, pipeline building. All the work processes are sho ...

Posted by Errant_Shadow on Thu, 05 Sep 2019 09:12:12 +0200

Installing jenkins in k8s and realizing dynamic generation of jenkins slave

Install jenkins1. Create a namespace$ kubectl create namespace kube-ops2. Create pvc for jenkins (you can also use storage classes) apiVersion: v1 kind: PersistentVolume metadata: name: opspv spec: capacity: storage: 2Gi accessModes: - ReadWriteMany persistentVolumeReclaimPolicy: Delete nfs: server: 192.168.1.244 path: ...

Posted by passagewds on Wed, 04 Sep 2019 17:14:12 +0200

Installing prometheus in k8s cluster

In earlier versions, Kubernetes provided a combination of heapster, influxDB and grafana to monitor and control systems. Now the more popular monitoring tool is prometheus, which is an open source version of Google's internal monitoring and alarm system. Compared with other traditional monitoring tools, Prometheus has the following characteris ...

Posted by vegnadragon on Sat, 24 Aug 2019 17:20:00 +0200

Kubernetes GPU Cluster Automation Deep Learning Training

Reference Blog: http://www.infoq.com/cn/articles/kubernetes-gpu-cluster-to-automate-deep-learning-trainin 2018.2.4, if you change the source, you can not turn over the wall.Update reference https://github.com/EagleChen/kubernetes_init #Cluster: Maste ...

Posted by bobbfwed on Thu, 22 Aug 2019 04:22:26 +0200

Kubernetes Food Guide

Introduction to Kubernetes Kubernetes is a container cluster management system that Google opened source in June 2014. It was developed in the GoLanguage and is also known as K8S.K8S is derived from a container cluster management system called Borg within Google, which has been running on a large scale for ten years.K8S is mainly used for auto ...

Posted by rwfresh on Wed, 21 Aug 2019 20:09:07 +0200

Install and configure RabbitMQ (yum source and docker installation) on Centos7

I. docker installation 1. Enter docker hub mirror Warehouse address: https://hub.docker.com/ 2. Search rabbitMq image When you enter the official image, you can see the following types of images; we choose a version with "mangement" (i ...

Posted by Cagez on Wed, 21 Aug 2019 09:09:05 +0200