Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the Blue Ocean pipeline editor?

Where is the pipeline editor located within the Blue Ocean Jenkins plugin?

I can see my pipeline jobs, and when clicking into these I cant see any links\buttons that take me to the editor.

I'm sure in previous beta releases I could get to it, but now since the official release has been launched which I am now using, I cannot find it.

Anyone know where it's hiding?

like image 523
mindparse Avatar asked Apr 12 '17 13:04

mindparse


People also ask

How do I enable blue ocean in Jenkins?

From the Jenkins home page, select Manage Jenkins on the left and then Manage Plugins. Select the Available tab and enter blue ocean in the Filter text box.

What is Blue Ocean plugin in Jenkins?

"" Blue Ocean is a new user experience for Jenkins based on a personalizable, modern design that allows users to graphically create, visualize and diagnose Continuous Delivery (CD) Pipelines ""

What is a pipeline editor?

The pipeline editor module supports building pipelines that transform a data stream using a set of resuable data processors and data sinks. The empty pipeline editor looks similar to the illustration below after a new installation.


2 Answers

Use following url to open the pipeline editor:
http://<host>:<port>/jenkins/blue/organizations/jenkins/pipeline-editor/

like image 92
Prashant Kajale Avatar answered Oct 21 '22 03:10

Prashant Kajale


In addition to Prashant Kajale's answer, you can edit a specific item with

[Url of Jenkins]/blue/organizations/jenkins/pipeline-editor/[item-name]

Edit: According to the issue tracker, saving doesn't work with none-github repositories. You have to go to [Url of Jenkins]/blue/organizations/jenkins/pipeline-editor/ and open the load/save dialog with Ctrl+S, paste you Jenkinsfile (if you have one yet), edit it, and then save it manually by using Ctrl+S and copy.

like image 43
konstin Avatar answered Oct 21 '22 04:10

konstin