jmeter+ant+jenkins interface automation test
Setting up Jmeter environment
Set up a java environment first 1. Official Web http://www.oracle.com/technetwork/java/javase/downloads/index.html Download 2. Setting system variables, The variable name is JAVA_HOME=C:\Program Files\Java\jdk1.8.0_131 (Installed Path Directory) Set Path variable,%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin Variable na ...
Posted on Fri, 03 Dec 2021 18:11:26 -0500 by Kryllster
centos installs jenkins and configures flash for automatic publishing
Automatic deployment has come. Although it has been done before and now, it has not been sorted into notes. There are thousands of pits on the Internet, with jenkins installation
The first step is to install jenkins. You need to install jdk first
yum search java|grep jdk
yum install java-1.8.0-openjdk
source /etc/profile
Step 2 download dep ...
Posted on Wed, 24 Nov 2021 05:35:13 -0500 by wood1e
spinnaker in Kubernetes uses two
Background:
Follow closely Use of spinnaker in Kubernetes . Various simple Triggers are completed, and deploy Mainfest deploys a simple pipeline of kubernetes. According to the actual environment, I want to go deeper into the pipeline steps: parametric construction, webhook triggering, e-mail sending, jenkins pipeline integration and so on Fi ...
Posted on Tue, 16 Nov 2021 22:20:56 -0500 by slindstr
Jenkins file one line of code to deploy. NET program to K8S
What is Jenkins shared library
With the increase of microservices, pipeline files are required for each project. In this way, pipeline code redundancy is high, and pipeline functions become more and more complex.
jenkins can use Shared Lib to abstract some public pipelines into module code and reuse them among various project pipelines to reduc ...
Posted on Mon, 08 Nov 2021 13:35:15 -0500 by stevieontario
Jenkins+tomcat Automated Deployment + nginx+apidoc document generation
2021SC@SDUSC
Integrated Automated Deployment
Jenkins installation configuration
Installation related environment
Run the following command to configure the Jenkins environment # Download add key
wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add -
# Add apt warehouse source for Jenkins
sudo sh -c 'echo d ...
Posted on Sat, 30 Oct 2021 04:53:03 -0400 by jonorr1
[Jenkins plug-in development 2] front and rear data transmission Foundation
How to save a configuration
The last HelloWorld generated project contains a Build extension by default. The configuration page of Jenkins task can be seen as follows. Let's copy the url and change the configuration to ` ` ` ` config.xml. We enter the name "Victor Liu" as prompted, save it, and then open the xml address we just ...
Posted on Tue, 26 Oct 2021 14:05:54 -0400 by citytours
Deployment and publishing policy
Grayscale / scroll Publishing
Gray publishing is an extension of Canary publishing, which divides publishing into different stages / batches, and the number of users in each stage / batch increases step by step. If no problems are found in the new version at the current stage, the number of users will be increased to the next stage unt ...
Posted on Wed, 06 Oct 2021 15:05:25 -0400 by ofSHIZ
Learn from zero Jenkins deployment SpringBoot project
preface
Although Jenkins has been used in previous projects, they are only used. They have not built their own projects and fully deployed a project. Since there is no independent deployment in the work, you can only do it yourself, and you don't have too many skills.
At first, Jenkins is downloaded and installed on the local machine, and the ...
Posted on Tue, 28 Sep 2021 15:55:07 -0400 by jamest
linux Installation and configuration jenkins
linux Installation and configuration jenkins
The first big problem: download the installation package
I don't want to choose the war package. I want to download it by installing the package. But I can't find the place to download the npm package on the official website. There are war packages everywhere. Finally, I found the location of the r ...
Posted on Sun, 26 Sep 2021 06:54:40 -0400 by mguili
CICD cluster construction under CentOS 8 (gitlab)
1. Environmental preparation
host:
hostenvironmentaddressvm1developer172.20.203.10vm2gitlab172.20.203.11vm3jenkins172.20.203.12vm4testing environment172.20.203.13
Software package: git gitlab jenkins nginx
Turn off the firewall and selinux
[root@vm1 ~]# systemctl stop firewalld
[root@vm1 ~]# systemctl disable firewalld
Removed /etc/syst ...
Posted on Fri, 24 Sep 2021 12:16:45 -0400 by jakeruston