enter image description here
Please, i am unable to see the pipeline tab on Jenkins page as shown in pic. Can someone comment on this?
if you mean you can't see an option to create a pipeline job; then for that, you need to click on "New item" on the top in the left-hand menu. Second - you need the pipeline plugin https://plugins.jenkins.io/workflow-aggregator
Related
Specifically I have a jenkins job that builds and publishes a docker image to our own artifactory instance. What I'm wondering is if it's possible to have the link to that artifactory (or docker hub, or anything else) link in place of the "Last Successful Artifacts" section shown on a build/project page?
For example, if the above image ^^^ had URLs instead of jenkins-archived artifacts. For example the page showing the artifactory page, or something simple like docker pull centos:8.3.2011
As far as i know you cant override the existing links in "Last Successful Artifacts" section, however you have several other options for both FreeStyle and Pipeline jobs:
You can use the Artifactory Plugin to upload your artifacts - it will automatically add links to the artifacts on the build page alongside all relevant Artifactory build info.
You can use the Build Name and Description Setter Plugin to set the build description with the links you want. This description will appear in the upper part of your build page and can include any HTML format you want including icons and links (Safe HTML option must be configured).
You can use the Sidebar Link Plugin to add a customized link to the sidebar menu of your build or project, you can configure the url, link text and the used icon according to your needs.
For using it in pipeline Jobs see the Following Discussion
The Artifactory Plugin is the easiest to use, setting the build description will give you maximum flexibility and the sidebar link is somewhat in the middle of both.
I'm using Jenkins v. 2.176.1 and Blue Ocean Version 1.17.0. When I try to do a new Pipeline, the Button "Save" is not present on the top bar so I can'tsave my pipeline. Could you explain why?
Thanks.
Please visit the link below. you have the version problems in plugins.
click here
I have configured Jenkins in my system and running fine. But I need to configure the jenkins UI.
a) I want to remove the "Jenkins" logo in header and instead of that I need to add "some text title".
b) I want to edit the left panel labels.
Ex. Build history to Workflow history, My View to Workflow View and Build Executor Status to Workflow Executor Status
Do we have any option to edit the html/config file directly or need to install any plugin to edit these labels. Thanks for your valuable time.
You can use the Jenkin's plugin simple theme:
https://wiki.jenkins.io/display/JENKINS/Simple+Theme+Plugin
You can personalize the CSS, the home page, the favicon. Pretty much everything that you need.
If you just need to do minor changes, you can have a look at https://github.com/jenkinsci/jenkins/tree/master/src/site (site.xml). And the resources folder where the logo is stored.
I have downloaded Jenkins' Build Pipeline Plugin.
The docs state:
Create a view of the new type Build Pipeline View.
You will then be redirected directly to the configuration page.
I just don't see the right button to create a new pipeline. What am I missing?
The Build Pipeline plugin allows you to create views of the downstream and upstream relations between your jobs (and also add manual steps in-between them). To create the pipeline you should first define these relations by using post-build triggers or the Build after other projects are built option, for example.
Then, you create the view as izzekil described in his answer and get a pipeline similar to the one below:
As per your quotation a Build Pipeline is not of a job kind: it is a view. You have to use "Create view" which is rendered as a plus sign placed in right-most tab. Or you can use direct link: http://jenkins.example.com/newView. There you will be able to select "Build Pipeline View" and proceed to its configuration page.
I have Jenkins v 1.6 and I had it under the + button here:
In addition to #izzekil's useful link above to the newView page, you might also be able to make sure of the Views tab if you have it on the Jenkins home page.
I am using the Stash Notifier plugin on jenkins to notify Stash of sucessful builds. When you click on the link for the build (Green tick link) in Stash, it pops up a dialog with a link back to jenkins. The URL it uses to link back to jenkins is wrong. I can't see anywhere to configure it.
Does anyone know where this link can be configured to use the right URL.
Log into jenkins as Admin
Select Jenkins (top left of screen)
From the drop down select 'Manage Jenkins'
Select 'Configure System'
About half way down the page there is a menu Jenkins Location, and under that there is an item 'Jenkins URL'
Add the correct URL
Save and exit