Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
225 views
Building A Ci CD Pipeline With Github Docker Sonarqube Jenkins Maven and Nexus
Uploaded by
Aymen
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save building-a-ci-cd-pipeline-with-github-docker-sonar... For Later
Download
Save
Save building-a-ci-cd-pipeline-with-github-docker-sonar... For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
225 views
Building A Ci CD Pipeline With Github Docker Sonarqube Jenkins Maven and Nexus
Uploaded by
Aymen
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save building-a-ci-cd-pipeline-with-github-docker-sonar... For Later
Carousel Previous
Carousel Next
Download
Save
Save building-a-ci-cd-pipeline-with-github-docker-sonar... For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 31
Search
Fullscreen
Open in app ” +> Get unlimited access to the best of Medium for less than $1/week. Become a member x Q search Mecium in\ : Building a CI/CD Pipeline with Github, Docker, SonarQube, Jenkins, Maven, and Nexus Fuzail Ahmed - Follow 8minread - May 14 © Listen (") Share ++ More. 1, Introduction to CI/CD Pipeline * What is a CI/CD pipeline? ACI/CD pipeline is a set of automated processes that are used to build, test, and deploy software applications. The pipeline is designed to streamline the process of software development by automating many of the repetitive tasks that are required to build, test, and deploy applications. ‘A typical CI/CD pipeline includes several stages, including code compilation, testing, and deployment. Each stage is designed to perform a specific task in the software development process, and each stage is connected to the next stage in the pipeline, creating a continuous flow of code from development to production. * Why do we need a CI/CD pipeline? ‘The primary reason for using a CI/CD pipeline is to increase the efficiency of the software development process. By automating many of the repetitive tasks that are required to build, test, and deploy applications, the pipeline can significantly reduce the time and effort required to deliver software to users. In addition to increasing efficiency, a CI/CD pipeline can also improve the quality of the software being developed. By automating testing and deployment, thepipeline can identify issues and errors early in the development process, allowing them to be addressed before they become significant problems. + What are the benefits of using a CI/CD pipeline? Increased efficiency: By automating many of the tasks required to build, test, and deploy applications, the pipeline can significantly reduce the time and effort required to deliver software to users. Improved quality: By automating testing and deployment, the pipeline can identify issues and errors early in the development process, allowing them to be addressed before they become significant problems. Faster time to market: By reducing the time required to develop and deploy software, the pipeline can help organizations get their products to market faster, giving them a competitive advantage. Better collaboration: By automating many of the repetitive tasks required in software development, the pipeline can free up developers to focus on more creative and innovative tasks, leading to better collaboration and teamwork. Continuous feedback: By providing continuous feedback on the development process, the pipeline can help organizations make better decisions about resource allocation and prioritize their development efforts.andgor4 Flow Diagram 2, Tools Used in the Project Github for version control Docker for containerization SonarQube for code analysis Jenkins for automation Maven for building projects Nexus for artifact management Step 1: Create EC2 Instance — (Instance -1) No. of Instance — 01 AMI — Ubuntu Server 20.04 LTS (HVM), SSD Volume Type Instance type — t2.medium Security group — ALL TCP1 Arpteaton sn mae (Amazon Machi map) Step 2: Connect with terminal and login as “Ubuntu” user and switch to root user using “sudo su” command. Step 3: Installing — Git, Java-11, Jenkins, Docker, Maven Packages apt update # install git & docker apt install git docker.io -y # Once the installation is complete, you can start Jenkins using the followii service docker start # You can check the status of Docker using the following command: service docker status # install Maven ed /opt wget
/dev/nult echo deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc] \ https: //pkg.jenkins.io/debian-stable binary/ | sudo tee \Jetc/apt/sources. List.d/jenkins.list > /dev/nult sudo apt-get update sudo apt-get install jenkins Jenkins -version # Once the installation is complete, you can start Jenkins using the followi! systemctl start jenkins # You can check the status of Jenkins using the following command: sudo systenctl status jenkins + By default, Jenkins runs on port 8080. You can access Jenkins by opening your web browser and entering the URL http: //
:8080 . Unlock Jenkins Your-Server-IP:8080 |__ Step 4: Configure Jenkins + When you first access Jenkins, you will be prompted to unlock Jenkins, To do this, you need to retrieve the initial administrator password from the Jenkins server using the following command: are Dy]* Copy the password and paste it into the “Administrator password” field on the Jenkins login screen. * Once you have unlocked Jenkins, you will be prompted to install recommended plugins. You can either install the recommended plugins or select the plugins that you want to install manually. rr ro Coeur add > 2 Jenkins Dashboard * Open Jenkins and navigate to “Manage Jenkins” > “Plugin Manager” > “available Plugins” > “Search — Maven Integration” > “Install without restart”.oe Plugins otters 2 me wee Seca Paes tet .—~ hipped bg teri dns Rds aneinertn SAORI pera apnangoanitia a otnacrigestn oe saa he * Open Jenkins and navigate to “Manage Jenkins” > “Global Tool Configuration”. * Scroll down to the “Maven” section and click on the “Add Maven” button. * Click on the “Save” button to save the Maven configuration. wo one * Open Jenkins and navigate to “Manage Jenkins” > “Credential” > “System” > “Global Credential (unrestricted)” Step 5: Configure SonarQube: * Click on the “Create” button to save the configuration. aS ‘SonarQube Pre-Requisités ——— ————5.1.Required 3 GB RAM CreateEE2 Instance for SonarQube — (Instance -2) New credentials * No.of Instance — 01 * Ami "Ubuntu Server 20.04 LTS (HVM), SSD Volume Type « Instance type — t2.medium « Security-group— ALL TCP) ° + Appesten an 9s tmape Amosee Matinee we Connect with terminal and login as “Ubuntu” user and switch to root user using “sudo su” command. 5.2.Java is Required apt update apt search openjdk apt install openjdk-11-jdk-headless java -version 5.3.Database is required Create Subnet groups with all availability zonessonar-sub Create RDS e . Go to the Amazon RDS dashboard. R . Choose the appropriate region for your instance. we . Click on the “Create database” button. > manne vs x ‘create database Engine Type — MySQL= Templates — Free tierChange DB Name a enguation : OSpoeceat one Create username and password° Existing VPC SG — ALL TCP * Review and confirm your settings, then click on the “Create database” button to create your RDS instance. 5.4.Database users and permission is required apt update apt install mysql-server mysql -h sonar-db.cfmucsduutge.ap-south-1.rds.amazonaws.com -P 3306 -u admin CREATE DATABASE sonar CHARACTER SET utf8 COLLATE utf8_general_ci; CREATE USER sonar@locathost IDENTIFIED BY ‘sonar’; CREATE USER sonar@'%' IDENTIFIED BY 'sonar'; GRANT ALL ON sonar.* TO sonar@localhost; GRANT ALL ON sonar.* TO sonar@'%! ; quit 5.5. SonarQube two configuration fileH 4 inst cd /opt H wget https: //binaries. sonarsource.com/Distribution/sonarqube/sonarqube-6. unzip sonarqube-6.7.6.2ip cd /opt/sonarqube-6.7.6/conf vi sonar.properties (Uncomment the highlighted lines) & add username and password, add rds endpoint instead of localhost(Uncomment the highlighted lines) sudo update-alternatives eee vi wrapper. conf wrapper. java.conmand=/usr/Lib/jvm/java-11-openjdk-amd6li/bin/jav: paste the java path Perse trerte ee epee Prugeiteot ier mee total 149 Cees Tr tee drwxr-xr-x ra 2018 drwxr-xr-x rr Prone} De eeecand Beye mY 2018 che Seite ig poe wees SSE as Wee 5 7.6/bin/Linux-x86-6ut | (we need to change the files permission from root to ubuntu in the path /bin/linux-x86-64) chown -R ubuntu:ubuntu /opt/sonarqube-6.7.6Pech es pee Cea eres: mn Ey ts total 140 (bathe ae tamed Porat arg 20 2018 idrwxr-xr-x Patria’ 20 2018 idrwxr-xr-7 Pha thal’ 20 2018 melt ees aed ubuntu ubuntu 15. ply Re bas pa tessa Pointy 2018 wrapper* cet ase WL Aen ee cot a rao rs yr Rociaeery pe Sereeae mr cera rnc 20 Parrett cae rst sara Fr) Bair rata 20 Sir tm eT ee ean Vae Pecctmeec ere R Zy sot ee aL AE ttcs fom stet cae? exit Pita iee Path etree ec See er ees overt er reas Pearse pisrrevct (Exit to the Ubuntu user and change directory to sonarqube bin path and start the /sonar.sh) -/sonar.sh start % ./sonar.sh status * You can access SonarQube by opening your web browser and entering the URL http: //
tar -xvf
[email protected]
(webpage ur: https://help.sonatype.com/repomanager3/product-information/download) «/sonar.sh start % ./sonar.sh status ee eee eee Pers etree d Pointe era eee eet See ees root @ip-172-31-33-133. : o-018 fed bin Pres eat Esmeceseey 31-33-133 frtctnrtamerererennresacocaroneretenveenierers Piru eeser eects trie iyiinycaerererensponereresrrenerennecevetsnrsareceveracerenrceniiters pense fore Fuster ser y earned eee tT] * You can access Nexus by opening your web browser and entering the URL http: //
New Item > Pipeline > ok Configure = ome ° = - Jenkinfiles * Save your Pipeline & Build NowPrpenne U1 Cu Project Sonarube Quality Gate on Permalinks VFPUF: Sonar Qube eS OUTPUT: Nexus chmod 777 /var/run/docker.sock * Build Nowcues nave + Q seoren 22 BU. | | ourpuT: JENKINS- C1/CD Pipeline (using Blueocean) OUTPUT: Final Application OutputCI-CD Pipeline project using docker,jenkins sonarqube,maven,nexus ritten by Fuzail Anmed 2 Followers. IWS DevOps server-ip:8080/newapp More from Fuzail Ahmed 2 poor@ Fuzait Anmes CI/CD Pipeline: Jenkins Pipeline for Java Application with Maven, @ Fuzail Armes Create and Host a Wordpress Website on AWS EC2 with your own domain name Step 1: Launch an instance Amin read » Jun 14 Sa Q W hallenge for the #TerraWeek Monday Introduction to Terraform@ FuzzitAnmes Day 1— Introduction to Terraform * Infrastructure as Code (laC) 6minread © Jun? ay @ Fuzait anes Day 2 - Terraform Configuration Language (HCL) HCL (HashiCorp Configuration Language) is a declarative language used in Terraform to define infrastructure configurations. It provides a. 8minread » Jun? Hr ¢ Won See all from Fuzail Anmed.Recommended from Medium @ Fuzail Armes Create and Host a Wordpress Website on AWS EC2 with your own domain name Step 1: Launch an instance Amin read » Jun 14 Ha QEe > lenaens > Fonentstrnde ry for 015924985 1efa747¢ (jenkins-sarver i. ov 1B ee 1925.24 7p sor ‘eorpaeamssonaerem opener 1B oconaraeattee et ews meet re ETO 5 & Kishan Madhesiya Jenkins CI/CD pipeline with GitHub for Deploying React Docker application on EC2 instance. Project 1: Creating an EC2 instance (Ubuntu) ‘Tminread + Aug? je Qi [io Lists Staff Picks 422 stories - 248 saves Stories to Help You Level-Up at Work 19stories - 194 saves Self-Improvement 101 20stories » 483 saves Productivity 101 20stories - 473 savesPeer per Loa @ Aman Pathak in Devops.dev Deployed Java application using Maven, Sonarqube, Jfrog Artifactor, Jenkins, ArgoCD and finally... How to build, test, Code Analysis, Upload build Artifacts, build docker Image, Push docker Image and Deploy the Java-based Application? Qminread - May 19 Amazon RDS MySQL DataBase Amazon EKS (— ea B&B & ri oO9 B cumhur Mesut Akkaya Working with Microservices-14: Creating Amazon RDS MySQL database for Kubernetes cluster in the... We continue our Production Pipeline. In this section, we will use Amazon RDS instead of MySQL pod and service during the Production stage... ‘Tminread - Aug 16 ema. management .azure. com/schemas/2019-04-@1/dep G@ tia anaparthy Azure ARM Templates: A Beginner’s Guide to Infrastructure Deployment Unlock the Potential of ARM Templates— Introduction and Template Structure Explained Qminread - Jun28Docker Host Launche Jenkins Slaveragent Container ns Controller Container a eae Pipelines/jobs Containers @ Yassine Essadraoui Jenkins: Docker in Docker In this article 'm going to demonstrate how to install/run Jenkins controller and slave fully on Docker 4minread - Aug 13 ( ‘See more recommendations
You might also like
Getting Started With Grafana (2022)
PDF
100% (3)
Getting Started With Grafana (2022)
363 pages
Lesson 1 Temenos Products
PDF
No ratings yet
Lesson 1 Temenos Products
16 pages
Cannot Install The Best Update Candidate For Package
PDF
No ratings yet
Cannot Install The Best Update Candidate For Package
7 pages
ADempiere UserManualPartB en
PDF
No ratings yet
ADempiere UserManualPartB en
20 pages
SonarQube Configuration PDF
PDF
No ratings yet
SonarQube Configuration PDF
7 pages
Overview of Software Engineering: VIT Chennai
PDF
No ratings yet
Overview of Software Engineering: VIT Chennai
100 pages
Jbase Intro
PDF
No ratings yet
Jbase Intro
100 pages
TCIB2 Deploy R14
PDF
No ratings yet
TCIB2 Deploy R14
30 pages
jBASE SQL Language: © 2006, 2016 Zumasys, Inc
PDF
No ratings yet
jBASE SQL Language: © 2006, 2016 Zumasys, Inc
27 pages
RPG Programming
PDF
No ratings yet
RPG Programming
43 pages
Jbase JDBC Driver
PDF
No ratings yet
Jbase JDBC Driver
24 pages
WebSphere ATMFRM Configuration TAFJ
PDF
No ratings yet
WebSphere ATMFRM Configuration TAFJ
20 pages
Fatal Error in COB-1
PDF
No ratings yet
Fatal Error in COB-1
4 pages
Jbase Jbasic Hello World
PDF
No ratings yet
Jbase Jbasic Hello World
14 pages
TAFJ-AS WebLogicInstall
PDF
No ratings yet
TAFJ-AS WebLogicInstall
66 pages
Ledger Fee Charges - Balance - Requirement, Turnover - Credit and Turnover - Debit
PDF
100% (1)
Ledger Fee Charges - Balance - Requirement, Turnover - Credit and Turnover - Debit
22 pages
Java Temenos Connector Server Plugin Isolistener - Jar
PDF
No ratings yet
Java Temenos Connector Server Plugin Isolistener - Jar
5 pages
Jbase JED
PDF
No ratings yet
Jbase JED
15 pages
TEFA
PDF
No ratings yet
TEFA
2 pages
How To Create Online and COB Services
PDF
No ratings yet
How To Create Online and COB Services
13 pages
Developing Applications With IBM FileNet P8 APIs
PDF
No ratings yet
Developing Applications With IBM FileNet P8 APIs
352 pages
J BASETo Oracle
PDF
No ratings yet
J BASETo Oracle
91 pages
OpenShift Cookbook Sample Chapter
PDF
No ratings yet
OpenShift Cookbook Sample Chapter
43 pages
Temenos T24 Desaster Recovery
PDF
No ratings yet
Temenos T24 Desaster Recovery
144 pages
Synopsis of T24 Java Documentations
PDF
No ratings yet
Synopsis of T24 Java Documentations
1 page
Jbasic Users Guide
PDF
No ratings yet
Jbasic Users Guide
247 pages
Model Bank R13: Telnet User Setup
PDF
No ratings yet
Model Bank R13: Telnet User Setup
9 pages
Transact Temenos Transact App 84b9fbd596 SZFBC - Sso.20240515
PDF
No ratings yet
Transact Temenos Transact App 84b9fbd596 SZFBC - Sso.20240515
465 pages
Agile For Beginners PDF
PDF
No ratings yet
Agile For Beginners PDF
1 page
SMEP_Chat
PDF
No ratings yet
SMEP_Chat
3 pages
TAFJ MSSQLInstall
PDF
No ratings yet
TAFJ MSSQLInstall
32 pages
Intro Toj Base
PDF
No ratings yet
Intro Toj Base
10 pages
TAFJ DSPackageInstaller
PDF
No ratings yet
TAFJ DSPackageInstaller
39 pages
Java 1
PDF
No ratings yet
Java 1
7 pages
Jbase SQL
PDF
No ratings yet
Jbase SQL
29 pages
Jbase Editor Tips Amp Tricks
PDF
No ratings yet
Jbase Editor Tips Amp Tricks
3 pages
jBASE INTRO21
PDF
No ratings yet
jBASE INTRO21
28 pages
API SCUTI Documentation-En V 1.0.0
PDF
100% (1)
API SCUTI Documentation-En V 1.0.0
26 pages
IBM Storwize Family and Temenos T24 PDF
PDF
No ratings yet
IBM Storwize Family and Temenos T24 PDF
6 pages
Advanced FTP - SFTP Scripting - WinSCP
PDF
No ratings yet
Advanced FTP - SFTP Scripting - WinSCP
5 pages
JBoss UG JCA HIGH AVAILABILITY
PDF
No ratings yet
JBoss UG JCA HIGH AVAILABILITY
46 pages
JBC SonarQube Plugin
PDF
No ratings yet
JBC SonarQube Plugin
24 pages
Customized COB Process
PDF
No ratings yet
Customized COB Process
2 pages
TAFC or JBASE Config
PDF
No ratings yet
TAFC or JBASE Config
21 pages
Generating Sysdef - XML For TAFJ Environment
PDF
No ratings yet
Generating Sysdef - XML For TAFJ Environment
5 pages
R20 Password Details
PDF
100% (1)
R20 Password Details
10 pages
September 2011
PDF
No ratings yet
September 2011
71 pages
Wikibanking - Info Common Variables
PDF
No ratings yet
Wikibanking - Info Common Variables
6 pages
OBIEE 11.1.7.0 Step by Step Installation On Linux (RHEL - Red Hat)
PDF
No ratings yet
OBIEE 11.1.7.0 Step by Step Installation On Linux (RHEL - Red Hat)
14 pages
Tws Ee Setup PDF
PDF
No ratings yet
Tws Ee Setup PDF
16 pages
SonarQube Installation in EC2
PDF
No ratings yet
SonarQube Installation in EC2
3 pages
T24 Temenos Connector
PDF
No ratings yet
T24 Temenos Connector
24 pages
Jbase3 XProgrammersReferenceManual
PDF
No ratings yet
Jbase3 XProgrammersReferenceManual
699 pages
Tocf
PDF
No ratings yet
Tocf
19 pages
Gpa-Cgpa Documentation: Release 5.7.2014
PDF
No ratings yet
Gpa-Cgpa Documentation: Release 5.7.2014
25 pages
jBASE Transaction Journaling
PDF
No ratings yet
jBASE Transaction Journaling
50 pages
Introduction To JBASE
PDF
No ratings yet
Introduction To JBASE
5 pages
Channels
PDF
No ratings yet
Channels
3 pages
My Cicd Updated (2)
PDF
No ratings yet
My Cicd Updated (2)
9 pages
Automating CI_CD for Deployment
PDF
No ratings yet
Automating CI_CD for Deployment
17 pages
Jenkins CICD Pipeline
PDF
No ratings yet
Jenkins CICD Pipeline
31 pages
Ultimate CICD Pipeline Project 28-May
PDF
No ratings yet
Ultimate CICD Pipeline Project 28-May
21 pages
Jenkins Ci CD Pipeline With Github For Deploying React Docker Application On Ec2 Instance
PDF
No ratings yet
Jenkins Ci CD Pipeline With Github For Deploying React Docker Application On Ec2 Instance
25 pages
Install REMI Repository On RHEL, CentOS, Scientific Linux 7 - 6.x - 5
PDF
No ratings yet
Install REMI Repository On RHEL, CentOS, Scientific Linux 7 - 6.x - 5
3 pages
How To Clear Memory Cache On Linux - Unixmen
PDF
No ratings yet
How To Clear Memory Cache On Linux - Unixmen
2 pages
Install OpenMRS (Open Medical Record System) On CentOS 6old
PDF
No ratings yet
Install OpenMRS (Open Medical Record System) On CentOS 6old
13 pages
Nginx Monitoring
PDF
No ratings yet
Nginx Monitoring
20 pages
How To Create A High Availability Setup With Corosync Pacemaker and Reserved Ips On Ubuntu 14 04
PDF
No ratings yet
How To Create A High Availability Setup With Corosync Pacemaker and Reserved Ips On Ubuntu 14 04
30 pages
How To Install Openshift On A Laptop or Desktop
PDF
100% (1)
How To Install Openshift On A Laptop or Desktop
7 pages
Nobest To Use Not Only Best Candidate Packages
PDF
No ratings yet
Nobest To Use Not Only Best Candidate Packages
3 pages
Install PostgreSQL 10 With Repmgr On CentOS 7
PDF
No ratings yet
Install PostgreSQL 10 With Repmgr On CentOS 7
5 pages
How To Solve Conflicting Values Set For Option Signed by Regarding Source F
PDF
No ratings yet
How To Solve Conflicting Values Set For Option Signed by Regarding Source F
2 pages
How To Set Up REPMGR With WITNESS For PostgreSQL 10 Official Pythian®® Blog
PDF
No ratings yet
How To Set Up REPMGR With WITNESS For PostgreSQL 10 Official Pythian®® Blog
5 pages
Ingress Nginx k8s
PDF
No ratings yet
Ingress Nginx k8s
17 pages
15 Sidecar
PDF
No ratings yet
15 Sidecar
5 pages
Replication - PostgreSQL Unable To Run Repmgr Cloned Database - Database Administrators Stack Exchange
PDF
No ratings yet
Replication - PostgreSQL Unable To Run Repmgr Cloned Database - Database Administrators Stack Exchange
5 pages
Automation at Scale Migrating 200000 Machines From Centos 7 To Rhel 9
PDF
No ratings yet
Automation at Scale Migrating 200000 Machines From Centos 7 To Rhel 9
6 pages
Repmgr 5.3.0 Documentation
PDF
No ratings yet
Repmgr 5.3.0 Documentation
87 pages
Relational Database Technologies Configuring Automatic Failover Using Replication Manager 2.0 On PostgreSQL 9.3.5
PDF
No ratings yet
Relational Database Technologies Configuring Automatic Failover Using Replication Manager 2.0 On PostgreSQL 9.3.5
1 page
Postgresql Cluster Kurulumu (Repmgr + Haproxy) by Alparslan Ozturk Medium
PDF
No ratings yet
Postgresql Cluster Kurulumu (Repmgr + Haproxy) by Alparslan Ozturk Medium
6 pages
Set Up PostgreSQL 9.5 Master-Slave Replication Using Repmgr Edward Samuel's Blog
PDF
No ratings yet
Set Up PostgreSQL 9.5 Master-Slave Replication Using Repmgr Edward Samuel's Blog
5 pages
Kubernetes Error The Connection To The Server (Host) 6443 Was Refused - Did You Specify The Right Host or Port - ErnesTech
PDF
No ratings yet
Kubernetes Error The Connection To The Server (Host) 6443 Was Refused - Did You Specify The Right Host or Port - ErnesTech
1 page
Troubleshooting Kubectl Error The Connection To The Server X.X.X.X 6443 Was Refused - Did You Specify The Right Host or Port - The Geek Diary
PDF
No ratings yet
Troubleshooting Kubectl Error The Connection To The Server X.X.X.X 6443 Was Refused - Did You Specify The Right Host or Port - The Geek Diary
2 pages
Installing Repmgr From Packages
PDF
No ratings yet
Installing Repmgr From Packages
3 pages
Kubernetes - How To Generate Kubeadm Token For Secondary Control Plane Node(s) - Stack Overflow
PDF
No ratings yet
Kubernetes - How To Generate Kubeadm Token For Secondary Control Plane Node(s) - Stack Overflow
7 pages
How To Fix It When Windows 11 Is Not Detecting Headphones
PDF
No ratings yet
How To Fix It When Windows 11 Is Not Detecting Headphones
8 pages
How To Install and Use Kubernetes On Ubuntu 20.04 - CloudSigma
PDF
No ratings yet
How To Install and Use Kubernetes On Ubuntu 20.04 - CloudSigma
15 pages
PostgreSQL HAProxy Proxy For HA and Load Balance - Alibaba Cloud Community
PDF
No ratings yet
PostgreSQL HAProxy Proxy For HA and Load Balance - Alibaba Cloud Community
9 pages
How To Install Kubernetes On Ubuntu 18.04 (Step by Step)
PDF
No ratings yet
How To Install Kubernetes On Ubuntu 18.04 (Step by Step)
4 pages
(FIXED) Microsoft Store Error Code "0x80131500"
PDF
No ratings yet
(FIXED) Microsoft Store Error Code "0x80131500"
23 pages