Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Customize Zeppelin user interface #1070

Merged
merged 6 commits into from
Mar 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deployments/hadoop-yarn/ansible/27-install-zeppelin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@

- name: "Download and install Zeppelin"
unarchive:
src: "https://downloads.apache.org/zeppelin/zeppelin-{{zepvers}}/{{zepname}}.tgz"
src: "{{zeptarurl}}"
dest: "{{zepbase}}"
remote_src: true

Expand Down
2 changes: 1 addition & 1 deletion deployments/hadoop-yarn/ansible/39-create-user-scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@
become: true
become_user: "{{zepuser}}"
ansible.builtin.shell: |
ssh-keyscan 'data.aglais.uk' >> "${HOME}/.ssh/known_hosts"
ssh-keyscan 'data.gaia-dmp.uk' >> "${HOME}/.ssh/known_hosts"

- name: "Create Scipt to export users"
copy:
Expand Down
6 changes: 3 additions & 3 deletions deployments/hadoop-yarn/ansible/config/zeppelin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
#

# Zeppelin vars
zepvers: "0.10.0"
zepname: "zeppelin-0.10.0-bin-all"
zepvers: "0.10.1-gaia-dmp-0.1"
zepname: "zeppelin-{{zepvers}}"
zepurl: "https://object.arcus.openstack.hpc.cam.ac.uk/swift/v1/AUTH_e216e6b502134b6185380be6ccd0bf09/archive/{{zepname}}.tar.gz"
zepbase: "/home/fedora"
zephome: "/home/fedora/zeppelin"
zephost: "zeppelin"
zepuser: "fedora"
zepmavendest: "/var/local/zeppelin/maven"
zepusersgroup: "zeppelinusers"

zepuserhome: "/home/fedora"
zepusername: "fedora"

Expand Down
65 changes: 65 additions & 0 deletions notes/stv/20221202-zeppelin-build.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
#
# <meta:header>
# <meta:licence>
# Copyright (c) 2022, ROE (http://www.roe.ac.uk/)
#
# This information is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This information is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# </meta:licence>
# </meta:header>
#


Target:

Build Zeppelin from sourcecode

Result:

Success


# -----------------------------------------------------
# Create Zeppelin Fork
# Done in Github UI



# -----------------------------------------------------
# Clone Zeppelin fork

git clone https://github.com/stvoutsin/zeppelin


# Make modifications to Zeppelin source code (Changes in zeppelin-web dir)
# Images, css ..


# -----------------------------------------------------
# Clean & Build

source "${HOME}/aglais.env"
pushd "${ZEPPELIN_CODE:?}"

mvn clean package -Pbuild-distr

popd


# Push tar.gz of release to S3
# Create container * upload tar.gz file in Horizon Dashboard
# Get public link to use




Loading