강의

멘토링

로드맵

BEST
Programming

/

Devops & Infra

Building a CI/CD Pipeline with Jenkins

This lecture covers CI (Continuous Integration) and CD (Continuous Deployment) pipelines, which are one of the four key elements (MSA, CI/CD, DevOps, Container) that make up cloud-native applications. Through this lecture, you can understand and practice the process of building and deploying your own automation pipeline in a local environment and a cloud environment using the CI/CD tool Jenkins.

(4.7) 208 reviews

4,604 learners

  • Dowon Lee
Jenkins
CI/CD
Ansible
Kubernetes
SonarQube

Reviews from Early Learners

What you will learn!

  • You can learn about the build, packaging, and deployment process of applications using Jenkins.

  • With CI/CD automation pipelines, you can deploy applications to various environments.

  • You will learn how to deploy applications to Docker and Kubernetes environments and how to control server configuration information using Ansible.

The trend is cloud native! ☁️
Build a CI/CD automation pipeline .

📢 Please check before taking the class!

  • Depending on your learning environment, lecture audio may be uneven. Intermittent noise may be heard during Section 0-2 classes, so please check the lecture [Preview] before taking the class.

Is this perhaps your concern ?

How should I deploy the completed development results to the operating server ?

How do I configure my deployment environment to deploy my deliverables to multiple environments?

How do I configure my application in a container virtualization environment ?

How do I deploy an application to a Kubernetes environment ?


The Core of DevOps, CI/CD
Faster and more powerful with Jenkins!

Jenkins?

You can build your own automation pipeline using Jenkins, an automation tool that helps with continuous integration (CI) and continuous deployment (CD).

This course is about understanding the process required to build and deploy applications developed using Jenkins, a CI/CD automation tool, and building an automation pipeline. Through 20 learning samples used in the course, students will learn about the entire process required to build, test, and deploy a completed application. In addition, you can build your own automated deployment process on your local PC and in a cloud environment.

Since the 2010s, IT systems have evolved with Resilient + Anti-Fragile + Cloud Native as their core keywords. An IT culture called DevOps emerged, a cloud native architecture was introduced, and systems had to be able to flexibly cope with any environment. When designing applications, domains began to be separated and developed using a microservice architecture, and services were split into dozens or even hundreds. Each service that makes up an application was converted into an environment where it could be developed, built, and deployed individually. In a DevOps environment, improvements and issues with services had to be quickly reflected. Development units had to be smaller, and deployments had to be performed more frequently.

Now, developers and operators can no longer manually build, package, and deploy tens or hundreds of services that make up a single application. Regardless of the complexity of the system itself, building and deploying each service that makes up an application can be a huge task and can be a factor that greatly increases the workload.

Building an automated pipeline for continuous integration (CI) and continuous delivery (CD) for today’s applications has become an essential choice for developing applications in a cloud-native environment. The entire process of fetching code from Git, performing a build, executing test cases, creating a package for deployment, and deploying to an operating system is performed by an automated process. This automated process provides an environment where you can build more frequently, test more frequently, and deploy more frequently, which ultimately leads to improved system quality.

In the lecture “Building a CI/CD Pipeline Using Jenkins”

In the previous two lectures, “ Developing RESTful WEB Services using Spring Boot ” and “ Developing Microservice Applications (MSAs) with Spring Cloud, ” we provided guides for developing web applications and cloud native applications. In this lecture, you will experience the process of building an automation pipeline required to deploy a web application developed with Spring Framework + Spring Boot to a local or cloud environment.

In this lecture, students will be able to build an automated pipeline to deploy developed applications to the production environment based on their understanding of CI/CD and build their own deployment process.

Great lectures to watch together 📖


To these people
I recommend it.

Web application
I have developed it
People who are there

Your own CI/CD
Automated pipeline
Those who want to build

On the operating server
The application
In a container virtualization environment
For those who want to distribute

CI/CD Automation
Through the pipeline
In a cloud environment
The application
For those who want to distribute

✅ After taking this course, you will be able to:

  • Understand continuous integration and continuous deployment.
  • You can build a deployment pipeline that you can practice in your local environment.
  • You will build an automated pipeline that can deploy your own applications or sample web applications provided in the course to a Tomcat web server and a Docker virtualization environment.
  • You can build your own deployment environment based on the example scripts provided in the lecture.

Learning content
Check it out.

💡 Learn the basics of building a CI/CD automation pipeline, and build your own deployment process with hands-on code. Students can practice both local and cloud deployments according to their own environment. You can build your own deployment environment with over 25 hands-on examples that can be applied and tested directly to the operating environment you want to deploy to. *Supports Windows, macOS (Intel Chip/Apple Silicon Chip) environments

Section 1 - DevOps and CI/CD

  • Learn about DevOps and CI/CD pipelines.

Section 2 - Learning CI/CD using Jenkins

  • Learn how to install and deploy Jenkins to build a CI/CD pipeline.
  • Learn how to deploy the Tomcat web server and Docker virtualization environment.

Section 3 - Jenkins + Infrastructure as Code

  • Understand Infrastructure as Code and learn how to use Ansible Server.
  • Learn how to integrate Jenkins with Ansible servers.

Section 4 - Jenkins + Ansible + Kubernetes Integration

  • Learn how to install Kubernetes for hands-on training.
  • Learn how to integrate Jenkins with Ansible servers and Kubernetes for deployment.

Section 5 - Using Advanced Jenkins ① - Pipeline

  • Understand Jenkins Pipeline features.
  • Learn how to deploy a project using a Jenkins Pipeline script.

Section 6: Using Advanced Jenkins ② - SonarQube, Multi nodes

  • Learn how to deploy on multiple nodes with Jenkins.
  • Learn how to use it in conjunction with the SonarQube system.

Section 7: Deploying to a Commercial Cloud Environment

  • Configure your deployment environment on a commercial cloud.
  • Learn how to install and deploy services used in your deployment environment on AWS EC2 servers.

Section 8: Essential SW for the Practice Environment

  • Learn how to install the SW and tools used in the lecture. (Windows, MacOS)
  • Learn how to create an account to use cloud services and how to create a virtual server.

💾 Notes on learning

  • This course is designed to teach you the content and process required to deploy an application. (For the prerequisite knowledge required for the course, please check [Prerequisite Knowledge] and Q&A at the bottom of the introduction page.)
  • The course is conducted in a macOS environment, and commands and scripts are also provided for students in a Windows environment.
  • Section 9 provides an introduction to the installation of essential SW for the lecture. We recommend that you take Section 9 before proceeding with the lab.

Q&A 💬

Q. What prerequisite courses or knowledge are required to take this course?

The lecture barely covers the programming part. You will learn the basics of the process and methods required to deploy the developed application to a local or cloud environment. In addition, if you have an understanding of the use of configuration management services such as Git, an understanding of web applications, and an understanding of virtualization services, it will be helpful in understanding the lecture content.

Q. What environment is used in the lecture?

In this lecture, we are using a local environment to deploy the application you have developed or the web application provided in the lecture. We are configuring the SW or system (Tomcat, SSH server, Kubernetes, etc.) required for deployment automation using Docker Desktop installed in the local environment, and providing examples so that you can build a deployment pipeline. In addition, the latter half of the lecture covers the part where you build the content built in the local environment to the cloud environment and practice it. The practice for this lecture is conducted in a macOS environment, but commands and scripts for Windows users are also provided.

Q. To what extent does it cover CI/CD automation deployments?

This course provides about 20 hands-on practice codes that can be practiced by anyone from those who are new to the concept of continuous integration (CI) and continuous delivery (CD) to developers who want to deploy applications to production servers through CI/CD pipelines. Based on what you learn in the course, you can build a CI/CD pipeline for deploying basic web applications and microservice applications. The use of Jenkins using Kubernetes Cluster, continuous monitoring, and continuous scheduling are being prepared through the "CI/CD Automation Deployment In-Depth Course (tentative title)".

More than 6,000 people are listening now
Are you curious about the know-how of MSA development?
Average rating 4.8★ Cumulative course reviews 500+

Spring Boot & Spring Cloud Microservice Application Development Roadmap (Click)

Recommended for
these people

Who is this course right for?

  • Anyone who wants to use CI/CD to deploy developed applications

  • Anyone who wants to build an automated build environment to deploy Spring Boot applications to Docker and Kubernetes

  • Anyone who wants to manage configuration information for servers on which applications are running using IaC

  • Anyone who wants to use Jenkins as a CI/CD automation deployment tool

Need to know before starting?

  • Understanding the Build and Deployment of Applications

  • Concepts of container virtualization technology

  • Understanding Web Applications

Hello
This is

29,431

Learners

1,573

Reviews

1,355

Answers

4.8

Rating

8

Courses

저는 IT 엔지니어입니다. 언젠가 직업란에 "회사원?", "개발자?", "강사?" 어떤 단어를 선택해야 할 지 고민이 되었던 때가 있었습니다. 그러다가, IT 엔지니어라는 표현이 제가 잘 어울리는 직업명이라는 생각이 들어 지금까지도 직업란에는 "IT 엔지니어"라고 적고 있습니다.

직업이라는 것은 자신의 일을 나타내는 것이고, 일이라는 것은 재미있고, 도움이 되는 일이면 좋겠다는 생각을 가지고 있습니다. 누구나 다 원하는대로 일을 하며 살수는 없지만, 저는 제가 하는 있는 이 일을 좋아하는 있고, 잘하고 싶어하는 사람입니다. 개발자로써, 강사로써, 컨설턴트로써의 역할을 해 오면서, 매번 새롭게 출시되고 변화하는 IT 신기술을 따라가기에 급급하지만, 그래도, 남들보다 조금이라도 먼저 접하고, 전파하고, 사용하고 싶은 사람 중 한명입니다. 

최근 관심을 가지고 있는 분야는 온라인 교육 컨설팅입니다. 그리고 관심있는 기술은 Cloud Native Architecture, Blockchain, Machine Learning, Kafka, Kuberbetes 등입니다. 이러한 기술은 실제로 강의도 하고 있고 업무에 적용해서 사용도 하고 있습니다. 하지만, 워낙 방대한 주제이다 보니, 아직까지도 계속 공부하고 있습니다.

머리속에 가지고 있는 것은 진정한 지식이 아니라고 합니다. 저는 제가 가진 지식과 경험을 다양한 방벙을 통해 공유하려 합니다. 그리고, 새로운 분야, 새로운 기술에 계속 도전하고 있는 IT 엔지니어가 될 것입니다.  

 

 

  • ) 엔제이원컴퍼니 대표 

  • ) 동국대학교 국제정보대학원 정보보호학과 대우교수

  • ) JP Morgan Chase AMJ Tech consultant (일본)

  • ) 삼성 SDS CMS 사업본부 책임 엔지니어

 

 

Curriculum

All

85 lectures ∙ (15hr 29min)

Course Materials:

Lecture resources
Published: 
Last updated: 

Reviews

All

208 reviews

4.7

208 reviews

  • najh05283457님의 프로필 이미지
    najh05283457

    Reviews 2

    Average Rating 5.0

    5

    100% enrolled

    I was able to learn clearly what Jenkins is and how to use it. Plus, Docker and k8s. Since Gradle builds are used more than Maven builds these days, I think it would have been better if the Gradle build had been an example!

    • hyunybutterchip님의 프로필 이미지
      hyunybutterchip

      Reviews 4

      Average Rating 4.8

      4

      78% enrolled

      I think this is a really good lecture for learning Docker and CI/CD. I recommend it, but there were many disappointing parts. 1. There are a lot of mistakes. For example, changing port 8080 to 8088. 2. There is no explanation about the separate environment settings section and lectures, which is confusing. 3. The lectures and environment settings lectures are too separate, so it is inconvenient to go back and forth. You might think that you can set everything up in advance, but even if you set it up, it is inefficient because it wastes memory and slows down if you don't use containers. 4. About half of the course progress is delayed because the environment settings are not set up right away. I think that troubleshooting is also good, but since it is a basic lecture, I think it is more efficient to learn quickly and troubleshoot while practicing. 5. There are almost no answers in the community. Many people are experiencing errors in the practice, but it seems that you only answer simple questions. The lecture price is not cheap. The course is really good, but I think it needs to be updated overall.

      • kenneth
        Instructor

        Hello, this is Lee Do-won. I will definitely reflect your feedback when updating the lecture. Due to the nature of the lecture, it often requires a lot of resources to run a container execution VM or multiple host PCs. Therefore, in order to reduce the burden or difficulty of the practical environment for students, I prepared a lecture on the Dind method or a separate VM setting. All scripts and sample codes used in the lecture were tested on Windows 10, Windows 11, MacOS Inter chip (2018), and MacOS M1 chip (2022), but I know that some students still have difficulty running it. In the future, I thought that I should provide tests in a more diverse environment for these infrastructure-related lectures or focus on other programming lectures besides infrastructure lectures. ^^; I also apologize for not being able to check and answer questions posted on the community right away. Since AI answers have been added since last year, it is true that I could not check the notification right away or could not answer right away because I was busy with the project. However, since students have personal circumstances, I will try to respond right away. Thank you for your feedback.

    • jaehyoni님의 프로필 이미지
      jaehyoni

      Reviews 1

      Average Rating 5.0

      5

      100% enrolled

      God's Garden! God's Garden! God's Garden! God's Garden! God's Garden! God's Garden! God's Garden! God's Garden! God's Garden! God's Garden! God's Garden! God's Garden! God's Garden! God's Garden! God's Garden! God's Garden! God's Garden!

      • rjm93036154님의 프로필 이미지
        rjm93036154

        Reviews 51

        Average Rating 5.0

        5

        25% enrolled

        I've been waiting for a long time. I'll watch this lecture diligently and hold my breath for the WebFlux lecture!!

        • kenneth
          Instructor

          Hello, I am currently preparing a WebFlux course. I will try to finish it quickly so that it can be opened within this year.

      • fkauskm0550님의 프로필 이미지
        fkauskm0550

        Reviews 10

        Average Rating 4.7

        3

        100% enrolled

        I think it would be easier for beginners to understand if you start with the settings first and then start the main lecture.

        Limited time deal

        $51.70

        24%

        $68.20

        Dowon Lee's other courses

        Check out other courses by the instructor!

        Similar courses

        Explore other courses in the same field!