Questions tagged [jenkins-blueocean]

Blue Ocean is a [now abandoned] next generation user experience for Jenkins, Blue Ocean, a revamped user interface for the Jenkins CI/CD (continuous integration/continuous delivery) server. Use this tag for questions referring to the Blue Ocean plugin for Jenkins.

Blue Ocean is an essentially abandoned initiative to overhaul the Jenkins UI to support a better pipeline experience.

Blue Ocean Documentation (Jenkins Book), Installation Plugin. Gitter support

Designed from the ground up for Jenkins Pipeline, but still compatible with Freestyle jobs, Blue Ocean reduces clutter and increases clarity for every member of the team.

Key components such as the Pipeline Graph View have been excised and delivered as standalone plugins.

192 questions
4
votes
1 answer

BlueOcean connect with SSH key

I have an ssh key setup for the bitbucket team. But the Blue Ocean UI only gives me the option for username and password which means I cant use it to create any pipelines: I have to use the old UI for now, unless there is a way to do this in…
red888
  • 27,709
  • 55
  • 204
  • 392
4
votes
2 answers

Add github url in jenkins blue ocean view

When i run a job in jenkins and view it in the blue ocean view it shows me the short git hash on the top left. I would like this hash to be clickable and link to the github page of that particular commit. Is there a way to do this? This is the hash…
Enermis
  • 679
  • 1
  • 5
  • 16
4
votes
1 answer

Jenkins Pipeline and huge amount of parallel steps

I have searched the whole internet for 2 weeks now, asked on freenode IRC and in the Jenkins user group mailing list for that but got no answer so here I am, you are my last hope (no pressure) I have a Jenkins scripted pipeline that generates…
4
votes
2 answers

How to generate graph of jenkins pipeline?

In this question I've seen a nice graph which shows a jenkins pipeline: But how can a generate such an image from my pipeline? Is there a special plugin or hidden button? I've found no such hint on the jenkins pipeline documentation.
Matthias M
  • 12,906
  • 17
  • 87
  • 116
3
votes
2 answers

Jenkins Blue Ocean Plugin fails to connect to GitHub

I'm trying to create a Jenkins pipeline using Blue Ocean but when I try to connect to my GitHub using the GitHub generated access token, nothing happens. However, when I check the console, I get this error message. Someone please help me…
3
votes
2 answers

ERROR: /var/jenkins_home/workspace/gara-bo@script/Jenkinsfile not found

I have a maven multi modules project. I create a pipeline to clean and deploy my project. When I run the pipeline I got the following output : ``Started by user XXXXX Checking out git http://XXXX:9080/gara/gara-back-end.git into…
3
votes
2 answers

I can't open blue ocean pipeline editor

I installed Blue Ocean in Jenkins. I can create pipeline from Blue Ocean but I can't edit pipeline. It stuck at "Connect to Git" In dev console, Failed to load resource: the server responded with a status of 428 (Precondition Required) How can I…
sally
  • 379
  • 2
  • 8
  • 17
3
votes
2 answers

What to enter for "scm" in BlueOcean editor

I got stuck at first step using the easy BlueOcean editor. I am trying to create a first step Build / Check out from version control. With one required field to enter scm. I tried the URL to my repo but the editor shows a message Expecting "class…
onknows
  • 6,151
  • 12
  • 65
  • 109
3
votes
1 answer

Jenkins Blue Ocean won't show Agent when creating a Pipeline

I'm new to Blue Ocean, and I'm following their tutorial which tells me to run: docker run \ --rm \ -u root \ -p 8080:8080 \ -v jenkins-data:/var/jenkins_home \ -v /var/run/docker.sock:/var/run/docker.sock \ -v "$HOME":/home \ …
Christopher Francisco
  • 15,672
  • 28
  • 94
  • 206
3
votes
3 answers

Jenkins Blue Ocean: Maven doesn't see Java

I'm getting the error "/var/jenkins_home/tools/hudson.model.JDK/jdk8/bin/java: not found:" even though the path exists: [edi-debatcher_master-LNI22Y2C5V3VECCBCFPVB3ZUWJJNMLK6LIFEQ6V3OYH52T74NU3A@2] Running shell script + echo PATH =…
user1198042
  • 61
  • 1
  • 4
3
votes
0 answers

Jenkins Blue Ocean set default language?

After install blue ocean , the default language is depend on browser language setting. How can i set the default language to en_us ? I find a way that work on Jenkins classic mode with plugin Locale Plugin,but not work on blue ocean. second way is…
kkman021
  • 163
  • 1
  • 11
3
votes
1 answer

Where is post build action on Jenkins - BlueOcean?

I am trying to configure multi-branch pipelines with blueocean. Previously I was using post build actions to send notifications and triggering other tasks depends on the build status like in here: Currently I'm looking for similar feature in…
mirza
  • 5,685
  • 10
  • 43
  • 73
3
votes
3 answers

Pipeline get tag list

I am trying to get the latest tag from a repo Jenkinsfile (using Blue Ocean Declarative Pipelines) but it throws an error. Command: def tag = sh(script: 'git describe --tags $(git rev-list --tags --max-count=1)', returnStdout: true).trim() Expected…
Squirrel
  • 1,283
  • 1
  • 13
  • 22
3
votes
1 answer

Jenkins Pipeline - how are 'sh' steps named in blue ocean?

I'm not following how the 'sh' step name or description is displayed in blue ocean. Right now, it's seemingly at random. example... This sh step shows 'Shell Script' in the step description: sh "cp -r /some/path/external/to/workspace/root ." And…
user797963
  • 2,907
  • 9
  • 47
  • 88
3
votes
2 answers

Group stages in parallel

I want to have a parallel pipeline like parallel ( "stream1" { } "stream2" {` } "stream3" {` } ) where I can add stages(two in each stream) and show them as in the attachment. Currently it works as the below How can I make…