Install Jenkins on Linux to realize automated deployment of microservices (from installation to project deployment)

Recently I found that the company’s services are too scattered. Each deployment is a bunch of jar packages. It makes my hands numb to package, upload and restart, so I decided to study automated deployment. One of the currently commonly used automation tools is K8S and the other is Jenkins. I looked at the K8S […]

gitlab+jenkins installation

This installation configuration takes centos7 as an example. Try to have as much memory as possible and as many cores as possible. At least 4g of memory and at least 4 cores will run very slowly. Gitlab Community Edition installation package address: gitlab/gitlab-ce – Packages · packages.gitlab.com gitlab installation 192.168.100.12 Server IP installed by gitlab […]

Jenkins integrated Robot Framework automated testing

1. Install headless browser 1.1 CentOS installation Phantomjs Download and unzip Visit Phantomjs, find the download link of Download phantomjs-2.1.1-linux-x86_64.tar.bz2, and copy it. Execute the command on CentOS: wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2 # If bzip2 is not installed, an error may be reported. yum install bzip2.x86_64 tar -jxvf phantomjs-2.1.1-linux-x86_64.tar.bz2 mv phantomjs-2.1.1-linux-x86_64 /usr/local/ Add to environment variables vim […]

Kubernetes practice: using k8s+jenkins to implement CICD

This is a community that may be useful to you One-to-one communication/interview brochure/resume optimization/job search questions, welcome to join the “Yudao Rapid Development Platform” Knowledge Planet. The following is some information provided by Planet: “Project Practice (Video)”: Learn from books, “practice” from past events “Internet High Frequency Interview Questions”: Studying with your resume, spring blossoms […]

Middleware security-CVE recurrence&Weblogic&Jenkins&GlassFish vulnerability recurrence

Directory Service Attack and Defense-Middleware Security &CVE Recurrence &Weblogic &Jenkins &GlassFish Vulnerability Recurrence Middleware-Weblogic security issues Vulnerability recurrence CVE_2017_3506 vulnerability reappears Middleware-JBoos security issues Vulnerability recurrence CVE-2017-12149 vulnerability reappears CVE-2017-7504 vulnerability reappears Middleware-Jenkins security issues Vulnerability recurrence CVE-2017-1000353 vulnerability reappears CVE-2018-1000861 vulnerability reappears Middleware-Glassfish Security Issues Vulnerability recurrence CVE-2017-1000028 vulnerability reappears Service Attack and Defense-Middleware […]

Jenkins automatically deploys SpringBoot applications under Linux

Jenkins automatically deploys SpringBoot applications under Linux 1. Introduction to Jenkins Official website: https://www.jenkins.io/ 2. Install Jenkins 2.1 Command line installation under centos To visit the official website, click on the document: Click Installing Jenkins: Click on Linux: Select Red Hat/Alma/Rocky and you can see the related installation commands: sudo wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo sudo […]

Popular on the entire network, Python+Pytest+Allure+Jenkins interface automation framework (steps + source code)

Table of Contents: Introduction Preface 1. Python programming from entry to proficiency 2. Practical implementation of interface automation projects 3. Web automation project actual combat 4. Practical implementation of App automation project 5. Resumes of first-tier manufacturers 6. Test and develop DevOps system 7. Commonly used automated testing tools 8. JMeter performance test 9. Summary […]

Detailed method to install Jenkins in Kubernetes cluster and implement automated DevOps

Description This article is about Jenkins installation based on kubernetes cluster. Please refer to the official kubernetes-based Jenkins installation. Before installation, please ensure that an available kubernetes cluster environment has been deployed. 1. Prepare resource list 1.1. Create namespace Create the namespace.yaml file with the following contents: apiVersion: v1 kind: Namespace metadata: name: jenkins 1.2. […]

Jenkins+vue release project

First create a task name in Jenkins Then go to the next step and put a project Fill in some parameters Parameter 1: Parameter 2: Parameter 3: Parameter 4: Just click Save Configuration script // git def git_url = ‘http://gitlab.xxxx.git’ def git_auth_id = ‘GITEE_RIVERBIED’ // harbor def harbor_host = ‘10.0.165.17:5000’ def harbor_project = ‘test’ def […]

tomcat deploys jenkins project

tomcat deploys jenkins project 1. Introduction to jenkins Jenkins is an open source continuous integration/continuous delivery (CI/CD) tool designed to help development teams improve product quality and development efficiency by automating the building, testing, and deployment of software projects. Jenkins supports a variety of programming languages and development environments, and can be integrated with many […]