Remember to empty the gitlab code warehouse and restore the disk again

prefaceThe story happened on a dark and windy night. An unusual phone call came and said that the business was in a hurry to go online, but their API package could not be uploaded to the company's maven private library. The leader asked me to support and see how to solve it. After years of unreliable intuition, the disk should be full. So he kn ...

Posted on Tue, 02 Nov 2021 01:26:49 -0400 by 14zero

Version control gitlab

Version control gitlab Introduction to version control Version control refers to the management of changes in various program codes, configuration files and description documents in the process of software development. It is one of the core ideas of software configuration management. The main function of version control is to track file ...

Posted on Mon, 11 Oct 2021 15:52:36 -0400 by jsim

Gitlab from zero to one is installed based on docker gitlab (JAVA little bamboo, recommended Collection)

โค๏ธ About the author: a high-quality creator in the Java field ๐Ÿ†๏ผŒ CSDN blog expert certification ๐Ÿ† โค๏ธ Technical work should be rewarded โค๏ธ give the thumbs-up ๐Ÿ‘ Collection โญ Look again and form a habit docker Foundation You should first master the common skills of docker. If you are not familiar with it, please be familiar with these ar ...

Posted on Sat, 02 Oct 2021 20:48:12 -0400 by klaibert26

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

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

How to deploy GitLab in alicloud?

โ€ƒโ€ƒ this tutorial defaults to the creation of alicloud ECS and the deployment of GitLab environment on this basis. โ€ƒโ€ƒ there is a manual deployment tutorial on the GitLab official website, and the instructions of different operating systems are more or less different. The tutorial link on the official website is as follows: ...

Posted on Tue, 21 Sep 2021 17:59:02 -0400 by amchargue

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

A Node online service migration

The original Node service needs to be migrated to a new host, so a new environment and corresponding migration scheme need to be prepared. Node installation Manual installation Download address: https://nodejs.org/en/download/ Select: Linux Binaries (x64) right click Copy download link # Download ...

Posted on Sun, 24 May 2020 08:37:40 -0400 by mpiaser

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

Aliyun server building Docker

Software installation First install the appropriate software: apt update apt install software-properties-common curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" apt update apt-cache policy docker-ce apt-get i ...

Posted on Mon, 04 May 2020 15:41:53 -0400 by Allen4172