[JIRA] (JENKINS-58353) New jenkins job doesn't get added to the Dashboard view using Python Jenkins

35 views
Skip to first unread message

vkarkad@cisco.com (JIRA)

unread,
Jul 5, 2019, 3:12:02 AM7/5/19
to jenkinsc...@googlegroups.com
Vineeth Karkad created an issue
 
Jenkins / Bug JENKINS-58353
New jenkins job doesn't get added to the Dashboard view using Python Jenkins
Issue Type: Bug Bug
Assignee: Jan Niklas Hasse
Components: python-plugin
Created: 2019-07-05 07:11
Environment: Jenkins ver. 2.138.1
Priority: Major Major
Reporter: Vineeth Karkad

Hello there!

We have a requirement where we add the jenkins job for the newly created branch to the Dashboard/Hotfixes view.

The python tool when run for Hotfix branch gets added to the Hotfixes view cleanly. But, when we create a feature branch that has to get added to the Dashboard it doesn't get added.

Note: Here view variable is either Dashboard or Hotfixes
view_path = 'all/job/USM/view/{}'.format(view)
view_cfg = server.get_view_config(view_path)
update_cfg = []
for num, line in enumerate(view_cfg.splitlines(), start=1):
    if line.strip().startswith('</jobNames>'):
        spaces = ' ' * 4
        update_cfg.append(u'{}<string>{}</string>'.format(spaces, branch))
     update_cfg.append(line)
server.reconfig_view(view_path, new_view_cfg)

Here we read the conflig xml of the view we want the job to be added.
Then, we add the new branch before the jobNames end in the config xml file.
Lastly, we update the view using reconfig_view.

Not sure why the new job doesn't get added to the Dashboard view. But works fine when we added it to say Hotfixes view.

Please advise if I am missing something here.

Add Comment Add Comment
 
This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)

vkarkad@cisco.com (JIRA)

unread,
Jul 5, 2019, 3:17:02 AM7/5/19
to jenkinsc...@googlegroups.com
Vineeth Karkad updated an issue
Change By: Vineeth Karkad
Attachment: Screenshot 2019-07-05 at 12.45.43 PM.png

vkarkad@cisco.com (JIRA)

unread,
Jul 5, 2019, 3:20:03 AM7/5/19
to jenkinsc...@googlegroups.com
Vineeth Karkad commented on Bug JENKINS-58353
 
Re: New jenkins job doesn't get added to the Dashboard view using Python Jenkins

Added attachment of all jobs in the Hotfixes view.

This is before adding the new branch KPAIDI_DEVELOPMENT to the view.

vkarkad@cisco.com (JIRA)

unread,
Jul 5, 2019, 3:25:03 AM7/5/19
to jenkinsc...@googlegroups.com

releng26.builders bin> python edit_jenkins_view.py IMS Hotfixes KPAIDI_DEVELOPMENT
Project: IMS
View: Hotfixes
Branch: KPAIDI_DEVELOPMENT

<<Before adding the new branch KPAIDI_DEVELOPMENT to the view>>
Jobs in the all/job/IMS/view/Hotfixes view
--------------------------------------------
6.2.3-HOTFIX-BU
6.2.3-HOTFIX-CJ
6.2.3-HOTFIX-CN
6.2.3-HOTFIX-CP
6.2.3-HOTFIX-CQ
6.2.3-HOTFIX-CR
6.2.3-HOTFIX-CT
6.2.3-HOTFIX-CU
6.2.3-HOTFIX-CV
6.2.3-HOTFIX-CW
6.2.3-HOTFIX-CX
6.2.3-HOTFIX-CY
6.3.0-HOTFIX-C
6.3.0-HOTFIX-M
6.3.0-HOTFIX-S
6.3.0-HOTFIX-T
6.3.0-HOTFIX-U
6.3.0-HOTFIX-V
6.3.0-HOTFIX-W
6.3.0-HOTFIX-X
6.3.0-HOTFIX-Y
6.3.0-HOTFIX-Z
6.4.0-HOTFIX-A
6.4.0-HOTFIX-C
6.4.0-HOTFIX-D
6.4.0-HOTFIX-E
6.4.0-HOTFIX-F
HOTFIX%20Branch%20Creation

<<After adding the new branch KPAIDI_DEVELOPMENT/WRAPPER to the view>>
Jobs in the all/job/IMS/view/Hotfixes view
--------------------------------------------
6.2.3-HOTFIX-BU
6.2.3-HOTFIX-CJ
6.2.3-HOTFIX-CN
6.2.3-HOTFIX-CP
6.2.3-HOTFIX-CQ
6.2.3-HOTFIX-CR
6.2.3-HOTFIX-CT
6.2.3-HOTFIX-CU
6.2.3-HOTFIX-CV
6.2.3-HOTFIX-CW
6.2.3-HOTFIX-CX
6.2.3-HOTFIX-CY
6.3.0-HOTFIX-C
6.3.0-HOTFIX-M
6.3.0-HOTFIX-S
6.3.0-HOTFIX-T
6.3.0-HOTFIX-U
6.3.0-HOTFIX-V
6.3.0-HOTFIX-W
6.3.0-HOTFIX-X
6.3.0-HOTFIX-Y
6.3.0-HOTFIX-Z
6.4.0-HOTFIX-A
6.4.0-HOTFIX-C
6.4.0-HOTFIX-D
6.4.0-HOTFIX-E
6.4.0-HOTFIX-F
HOTFIX%20Branch%20Creation
KPAIDI_DEVELOPMENT

vkarkad@cisco.com (JIRA)

unread,
Jul 5, 2019, 3:27:03 AM7/5/19
to jenkinsc...@googlegroups.com

After adding the new branch KPAIDI_DEVELOPMENT to the Hotfixes view.

Works perfectly fine.

vkarkad@cisco.com (JIRA)

unread,
Jul 5, 2019, 3:27:03 AM7/5/19
to jenkinsc...@googlegroups.com
Vineeth Karkad updated an issue
Change By: Vineeth Karkad
Attachment: Screenshot 2019-07-05 at 12.55.37 PM.png

vkarkad@cisco.com (JIRA)

unread,
Jul 5, 2019, 3:30:01 AM7/5/19
to jenkinsc...@googlegroups.com
 
Re: New jenkins job doesn't get added to the Dashboard view using Python Jenkins

Before proceeding with adding the new branch to Dashboard, I went about updating the view (Edit view option) and manually unchecked the jenkins job.

Now, I will be re-running the tool to add the same branch to Dashboard view.

vkarkad@cisco.com (JIRA)

unread,
Jul 5, 2019, 3:32:02 AM7/5/19
to jenkinsc...@googlegroups.com
Vineeth Karkad updated an issue
Change By: Vineeth Karkad
Attachment: Screenshot 2019-07-05 at 1.00.17 PM.png

vkarkad@cisco.com (JIRA)

unread,
Jul 5, 2019, 3:32:03 AM7/5/19
to jenkinsc...@googlegroups.com
 
Re: New jenkins job doesn't get added to the Dashboard view using Python Jenkins

Displaying the Jobs part of the Dashboard view for reference (before running the tool to add to this view):

vkarkad@cisco.com (JIRA)

unread,
Jul 5, 2019, 3:33:02 AM7/5/19
to jenkinsc...@googlegroups.com

releng26.builders bin> python edit_jenkins_view.py IMS Dashboard KPAIDI_DEVELOPMENT
Project: IMS
View: Dashboard
Branch: KPAIDI_DEVELOPMENT

<<Before adding the new branch KPAIDI_DEVELOPMENT to the view>>
Jobs in the all/job/IMS/view/Dashboard view
--------------------------------------------
6_5_0-LINA
6_6_0-LINA
DEV_PIPELINE
DEVELOPMENT
FAC
GRADLE2
IMS_6_2_2_6
IMS_6_2_3
IMS_6_2_3_14
IMS_6_2_3_15
IMS_6_3_0_4
IMS_6_3_0_5
IMS_6_3_0_5_AEP
IMS_6_4_0_2
IMS_6_4_0_3
IMS_6_4_0_4
IMS_6_5_0_IFT
INTEG
POLICY_APPLY
SYBUPG
TLS_13
VIN_INF1
VIN_INF2
VULNPATCH
WR_LTS18
wr_rebase

<<After adding the new branch KPAIDI_DEVELOPMENT/WRAPPER to the view>>

Jobs in the all/job/IMS/view/Dashboard view
--------------------------------------------
6_5_0-LINA
6_6_0-LINA
DEV_PIPELINE
DEVELOPMENT
FAC
GRADLE2
IMS_6_2_2_6
IMS_6_2_3
IMS_6_2_3_14
IMS_6_2_3_15
IMS_6_3_0_4
IMS_6_3_0_5
IMS_6_3_0_5_AEP
IMS_6_4_0_2
IMS_6_4_0_3
IMS_6_4_0_4
IMS_6_5_0_IFT
INTEG
POLICY_APPLY
SYBUPG
TLS_13
VIN_INF1
VIN_INF2
VULNPATCH
WR_LTS18
wr_rebase

vkarkad@cisco.com (JIRA)

unread,
Jul 5, 2019, 3:34:02 AM7/5/19
to jenkinsc...@googlegroups.com
Vineeth Karkad updated an issue
Change By: Vineeth Karkad
Attachment: Screenshot 2019-07-05 at 1.02.52 PM.png

vkarkad@cisco.com (JIRA)

unread,
Jul 5, 2019, 3:37:02 AM7/5/19
to jenkinsc...@googlegroups.com
 
Re: New jenkins job doesn't get added to the Dashboard view using Python Jenkins

Displaying Dashboard view after running the tool.

As seen above in the snapshot the Dashboard view doesn't get updated. 

This is where I am puzzled as to what is amiss. Please advise.

vkarkad@cisco.com (JIRA)

unread,
Jul 5, 2019, 3:42:01 AM7/5/19
to jenkinsc...@googlegroups.com
Vineeth Karkad edited a comment on Bug JENKINS-58353
Before proceeding with adding the new branch to Dashboard, I went about updating the view (Edit view option) and manually unchecked the jenkins job add to the Hotfixes view .


Now, I will be re-running the tool to add the same branch to Dashboard view.

vkarkad@cisco.com (JIRA)

unread,
Jul 10, 2019, 12:21:02 AM7/10/19
to jenkinsc...@googlegroups.com

Hi Jan, If you could spare some time; Would you mind having a look?

Thanks in advance.

vkarkad@cisco.com (JIRA)

unread,
Jul 10, 2019, 6:21:02 AM7/10/19
to jenkinsc...@googlegroups.com
Vineeth Karkad updated an issue
Change By: Vineeth Karkad
Attachment: Screenshot 2019-07-10 at 3.46.25 PM.png

vkarkad@cisco.com (JIRA)

unread,
Jul 10, 2019, 6:21:02 AM7/10/19
to jenkinsc...@googlegroups.com
 
Re: New jenkins job doesn't get added to the Dashboard view using Python Jenkins

On checking the config.xml for the Dashboard view, the job shows up in the config.xml. 
But, when we refresh the view the job is not displayed.

vkarkad@cisco.com (JIRA)

unread,
Jul 10, 2019, 6:22:02 AM7/10/19
to jenkinsc...@googlegroups.com
Vineeth Karkad edited a comment on Bug JENKINS-58353
On checking the config.xml for the Dashboard view, the job shows up in the config.xml. 
But, when we refresh the view , the added job is not displayed.

!Screenshot 2019-07-10 at 3.46.25 PM.png|thumbnail!

vkarkad@cisco.com (JIRA)

unread,
Jul 11, 2019, 6:32:01 AM7/11/19
to jenkinsc...@googlegroups.com

jhasse@gmail.com (JIRA)

unread,
Jul 26, 2019, 9:52:01 AM7/26/19
to jenkinsc...@googlegroups.com

I'm no longer using Jenkins. Can someone remove me as the Python plugin maintainer? Thanks.

csanady.mate@ulyssys.hu (JIRA)

unread,
Nov 21, 2019, 8:58:03 AM11/21/19
to jenkinsc...@googlegroups.com
Csanády Máté edited a comment on Bug JENKINS-58353
  Hi Vineeth!

I am suffering from the same problem.

Have you come up with a solution since july?

Thanks.
This message was sent by Atlassian Jira (v7.13.6#713006-sha1:cc4451f)
Atlassian logo

csanady.mate@ulyssys.hu (JIRA)

unread,
Nov 21, 2019, 8:58:54 AM11/21/19
to jenkinsc...@googlegroups.com

 Vineeth!

I am suffering from the same problem.

Have you come up with a solution since july?

Thanks.

vkarkad@cisco.com (JIRA)

unread,
Nov 21, 2019, 10:05:02 AM11/21/19
to jenkinsc...@googlegroups.com

Hi Máté! 

Thanks for chiming in. We haven't come up with any solution as yet. Hopefully this ticket gets attention of the right folks and prioritised to get fixed.

csanady.mate@ulyssys.hu (JIRA)

unread,
Nov 25, 2019, 5:26:02 AM11/25/19
to jenkinsc...@googlegroups.com

Hi Vineeth!

I've fonund a workaround. I know, that it's not the solution, but solves your problem, while there is no fix for the bug.

I run a groovy script on the server, that adds the job under the specified view. My code:

view = "MyView"
job = "MyJob" 

try:
            script = "import jenkins.model.Jenkins\nJenkins jenkins = Jenkins.getInstance()\nmyView = hudson.model.Hudson.instance.getView(\"" + view + "\")\nmyView.doAddJobToView(\"" + job + "\")"
            server.run_script(script)
            save = "import jenkins.model.Jenkins\nJenkins jenkins = Jenkins.getInstance()\njenkins.save()"
            server.run_script(save)
except Exception, e:
            print("Cannot add job under the specified view\n" + str(e).decode("utf-8"))  

vkarkad@cisco.com (JIRA)

unread,
Nov 25, 2019, 5:31:03 AM11/25/19
to jenkinsc...@googlegroups.com

Hi Máté! 

Phew, this is awesome! I will try it out and update you on how it goes..Thanks a bunch, really appreciate it.

 

csanady.mate@ulyssys.hu (JIRA)

unread,
Dec 9, 2019, 8:58:02 AM12/9/19
to jenkinsc...@googlegroups.com

Hi Vineeth!
Could you try it out? How did it go? Do sou need any help?
Máté

Reply all
Reply to author
Forward
0 new messages