How to deploy in Jenkins

Asked 1 years ago, Updated 1 years ago, 102 views

I'm studying jenkins now.
I'm quite a beginner.
When I pushed to git, I understood until Jenkins' job ran and automatically built and deployed.
Is deployment job the default for Jenkins from the default for Jenkins?
Wouldn't it be possible to deploy to a specific location if you added Configure?
If I don't create a new deploy job myself, won't I be able to deploy with jenkins?

git jenkins deployment

2022-09-30 21:43

1 Answers

First of all,

Is deployment job the default for Jenkins from the default for Jenkins?
Wouldn't it be possible to deploy to a specific location if you added Configure? US>New deploy
If I don't create a job myself, won't I be able to deploy with jenkins?

There is no deployment job available from the beginning.
Basically, you must write your own deployment job.

https://jenkins.io/doc/

as described at the beginning of Jenkins documentation

Jenkins is a self-contained, open source automation server which can
used to automate all sorts of tasks related to building, testing,
and delivery or deployment software.

"It can be used to automate all kinds of tasks related to software construction, testing, delivery or deployment."
It was originally a tool for automating certain tasks, not software for deployment.
This is why I am good at automating and managing tasks that I do manually.

Therefore, you need to acquire your own software deployment knowledge and set it up as Jenkins.
However, there are many examples of software deployment as well as specific build and deployment examples of Jenkins on the web, so I don't think it's a problem.

Let's try it first.If you have any trouble, please ask me again.
Enjoy your CI/CD life!


2022-09-30 21:43

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.