A client needed one so I put together these instructions for a workaround. I plan on submitting a proper patch to Zeppelin if I can find some spare time. Hopefully someone else will do it first :)
These instructions use Hortonworks HDP 2.6.4.0-91 for specific locations. If you are using something else, you just need to change the path of the war and html file.
Zeppelin serves the login popup from /usr/hdp/2.6.4.0-91/zeppelin/webapps/webapp/components/login/login.html
It is possible to just change that file, but every time the Zeppelin service is restarted, the Zeppelin war is unpacked and login.html is overwritten.
We will alter the login.html copy inside the war file. This will have to be redone every time Zeppelin is upgraded (such as a new HDP release), but not during normal operations.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Put your banner message in a variable. Can be normal text or html.
export BANNERMSG="<big>UNAUTHORIZED ACCESS TO THIS NETWORK DEVICE IS PROHIBITED.</big> You must have explicit permission to access or configure this device. All activities performed on this device may be logged, and violations of this policy may result in disciplinary action, and may be reported to law enforcement. There is no right to privacy on this device."
#Change and repack (zip warning: Local Entry CRC does not match CD is OK)
sed -i "s|ng-model=\"loginParams.password\">|& <label> ${BANNERMSG} </label>|" components/login/login.html
sudo zip --update /usr/hdp/2.6.4.0-91/zeppelin/lib/zeppelin-web-0.7.3.2.6.4.0-91.war components/login/login.html
#Replace owner and permissions from those recorded above
I needed to test certain scenarios for a client against a Microsoft Active Directory Domain Controller and Intermediate Certificate Authority. The easiest way was to use Vagrant with the mwrock/Windows2012R2 box.
I wasn't able to automate the complete install, but did get it to a set of cut-and-paste lines.