Record of Jenkins' step hole installation with container
In order to facilitate the start command of the management container, the docker compose command is used together with docker-compose.yml File start container. Basic use can Refer here.
About how to install Jenkins in Docker, Reference here.
If you just want to see the final docker-compose.yml ...
Posted on Sun, 28 Jun 2020 22:41:11 -0400 by deadlyp99
Maven project uses Checkstyle to check code
Catalog
Maven project uses Checkstyle to check code
Configure checkstyle-IDEA plug-in in idea
Configure using Checkstyle in Maven projects
Single module maven project
Multi-module maven project
Configuration in Jenkins
abnormal
Reference resources
Maven project uses Checkstyle to check code
...
Posted on Mon, 22 Jun 2020 22:19:38 -0400 by Trevors
jenkins package deployment tool installation
Package download
maven package download
gradle package download
ant package download
node package download
Configure environment
#decompression
tar zxf apache-maven-xxxx.tar.gz -C /usr/local
tar zxf gradle-xxxx.tar.gz -C /usr/local
tar zxf node-xxxxx.tar.gz -C /usr/local
tar zxf apache-ant-xxxx.tar.gz -C /usr/local
#Add envi ...
Posted on Sun, 14 Jun 2020 23:04:48 -0400 by mj99
[K8S] 10,000 words long, understand the continuous integrated delivery environment based on Docker+K8S+GitLab/SVN+Jenkins+Harbor
Overview of environmental construction
1.What is K8S?
K8S, known as Kubernetes, is a new leading distributed architecture based on container technology, which aims to automate resource management and maximize resource utilization across multiple data centers.
If our system design follows the design ...
Posted on Fri, 12 Jun 2020 20:59:41 -0400 by dtdetu
Continuous integration and deployment based on Jenkins and Gitlab
CI/CD
Continuous Integration (CI) is a kind of software development practice. In Continuous Integration, developers integrate their development results at least once a day. After each integration, it will be tested by automatic build (including static scan, security scan, automatic test and other processes) to find errors in development. This ...
Posted on Thu, 04 Jun 2020 08:57:37 -0400 by DarkReaper
k8s+jenkins for Automated Deployment and application to k8s cluster
1. The jenkins environment prepares and starts the jenkins service
1) jdk environment configuration
[root@centos7 ~]# ll /app/
[root@centos7 ~]# cat/etc/profile | tail-n3 #jdk environment variableexport JAVA_HOME=/app/jdkexport PATH=$JAVA_HOME/bin:$JAVA_HOME/jre/bin:$PATHexport CLASSPATH=$JAVA_HOME/lib:$JAVA_HOME/jre/lib:$JAVA_HOME/lib/tools.j ...
Posted on Sun, 17 May 2020 13:45:59 -0400 by conor.higgins
jacoco generates single test coverage report
1, About jacoco
jacoco is an open source coverage tool, and its development language is java. It can be embedded in ant and maven, used as Eclipse Plug-in, used as java agent probe to monitor java programs, etc.
Many third-party tools provide the integration of jacoco, such as sonar, jenkins and so on.
jacoco includes a variety of scale coverag ...
Posted on Thu, 07 May 2020 04:40:01 -0400 by MasterHernan
Cannot connect to the Docker daem
After jenkins is delivered to the k8s cluster, when jenkins first builds the dubbo provider, an error is reported:
+ docker build -t harbor.od.com/app/dubbo-demo-service:master_200502_1625 .
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
After repeated construction, the following errors will ...
Posted on Mon, 04 May 2020 17:40:42 -0400 by mr_tron
Script chapter of Jenkins construction
After struggling with Xcode 9, it failed to export the. ipa file with Jenkins, and finally succeeded after being directed by a friend. Here is the final solution;
The general idea is as follows: Jenkins' configuration in the web page will mostly be sorted out later, and finally generate shell script in the terminal, a ...
Posted on Mon, 04 May 2020 07:15:59 -0400 by pckidcomplainer
Aliyun server builds Jenkins service
Jenkins installation and configuration
Refer to the installation method given by Jenkins Wiki:
https://wiki.jenkins.io/display/JENKINS/Installing+Jenkins+on+Ubuntu
wget -q -O - https://pkg.jenkins.io/debian/jenkins-ci.org.key | sudo apt-key add -
sudo sh -c 'echo deb http://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d ...
Posted on Fri, 01 May 2020 23:09:59 -0400 by Daukan