Release Automation

  • 1.  White label CA RA

    Posted Nov 03, 2016 08:08 AM

    Hi,

    How can I change the logo (top left) of CA Release automation. I want to change it from CA to customer logo.



  • 2.  Re: White label CA RA

    Broadcom Employee
    Posted Nov 04, 2016 03:50 AM

    Hi ,

     

    Are you looking for the icon in the first screen when you open

    http://releaseautiomationserver:8080/nolio-app/

     

    This one is showing the logo1.png from the following directory

    \ReleaseAutomationServer\webapps\nolio-app\images

     

    You can try ro replace this one for a logo with the same pixel size

    395p x 352p

     

    Regards

    Dirk



  • 3.  Re: White label CA RA

    Posted Nov 04, 2016 09:44 AM

    Hi,

    Tried changing the file with same dimensions. also restarted the service. But still CA logo is being shown



  • 4.  Re: White label CA RA
    Best Answer

    Posted Nov 04, 2016 08:41 PM

    When I inspect the logo in Chrome, I can see it is coming from :
    http://RA-SERVER:8080/datamanagement/images/5cabcd2a.logo_grey.png  (this is on v6.2)

    This is based on the css class="logo".  

     

    I will advise that replacing this image with your own will work, but will revert back to the stock image after each upgrade, including minor releases.  It is also possible that the file name could change between releases.  If you're OK updating this every time you update Release Automation, then you're good to go.

     

    I did something similar - I adjusted the background color for the DEV instance of RA, so you would always know you are in DEV vs PROD.  However, I got tired of trying to find the right image file to replace every upgrade, so now DEV looks just like PROD.  Oh well...



  • 5.  Re: White label CA RA

    Posted Nov 07, 2016 11:39 AM

    thanks.. nice work....

    also this is a workaround and would be replaced by each release ... not officially supported. Posting an idea for same.



  • 6.  Re: White label CA RA

    Posted Nov 10, 2016 04:51 AM

    I did something similar, keeping the CA logo in the top left corner and adding a ZKB company logo in the top right corner. I have a postinstall script for all the customisations I run after a install/upgrade.

    Copy the custom logo to ${NACDIR}/webapps/nolio-app/images/

    Hack the index file ${NACDIR}/webapps/nolio-app/index.jsp with awk using something like

     

          if ($0 ~ /NOLIO Zero Touch Deployment/) {
            print "<a href=\"COMPANY-URL\"><img src=\"images/COMPANY-logo.jpg\" style=\"position:absolute; right:2%\" border=\"0\"></a>"
            print $0

     

    HTH

    Bernard