Last active
April 10, 2024 12:29
-
-
Save ColonelPanics/c49e76b3f284c039c72b2582d3a9254e to your computer and use it in GitHub Desktop.
Some scripts for tweaking existing solo releases to use newer releases of things
This file contains hidden or 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
| #!/bin/bash | |
| FLIGHT_ROOT="/opt/flight" | |
| export PATH="$PATH:$FLIGHT_ROOT/bin" | |
| VERSION=${VERSION:-type/openflight-web-access} | |
| mv /opt/flight/usr/lib/profile/types /opt/flight/usr/lib/profile/types_orig | |
| git clone https://github.com/openflighthpc/flight-profile-types /opt/flight/usr/lib/profile/types | |
| cd /opt/flight/usr/lib/profile/types | |
| git checkout $VERSION | |
| flight profile prepare openflight-web-access |
This file contains hidden or 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
| GIST_URL="https://gist.github.com/ColonelPanicks/c49e76b3f284c039c72b2582d3a9254e/raw" | |
| SCRIPTS="flight-profile-types-from-source-on-solo.sh web-suite-from-source-on-solo.sh" | |
| for script in $SCRIPTS ; do | |
| curl -L $GIST_URL/$script |/bin/bash | |
| done |
This file contains hidden or 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
| #!/bin/bash | |
| FLIGHT_ROOT="/opt/flight" | |
| export PATH="$PATH:$FLIGHT_ROOT/bin" | |
| clone_and_install() { | |
| repo=$1 | |
| branch=$2 | |
| location=$3 | |
| mv $location ${location}_orig | |
| git clone $repo $location | |
| cd $location | |
| git checkout $branch | |
| bash bin/yarn-link-webapp-components.sh | |
| yarn install | |
| yarn run build | |
| } | |
| get_app_config() { | |
| wget -O $FLIGHT_ROOT/opt/www/landing-page/default/content/apps/$2 $1 | |
| } | |
| dnf remove -y alces-flight-landing-page-branding | |
| dnf -y install rsync | |
| # Landing Page | |
| git clone https://github.com/openflighthpc/flight-landing-page /tmp/landing-page | |
| cd /tmp/landing-page | |
| git checkout dev/front-end | |
| mv $FLIGHT_ROOT/opt/www/landing-page/default $FLIGHT_ROOT/opt/www/landing-page/default_orig | |
| mv $FLIGHT_ROOT/opt/www/landing-page/lib $FLIGHT_ROOT/opt/www/landing-page/lib_orig | |
| mv $FLIGHT_ROOT/opt/www/landing-page/Rules $FLIGHT_ROOT/opt/www/landing-page/Rules_orig | |
| rsync -auv landing-page/types/default/ $FLIGHT_ROOT/opt/www/landing-page/default/ | |
| rsync -auv landing-page/lib/ $FLIGHT_ROOT/opt/www/landing-page/lib/ | |
| rsync -auv landing-page/Rules $FLIGHT_ROOT/opt/www/landing-page/ | |
| # Maybe get rid of "overridden" dir so alces branding page doesn't take precedence | |
| # Maybe download the config packs | |
| mkdir -p $FLIGHT_ROOT/opt/www/landing-page/default/content/apps/ | |
| get_app_config https://raw.githubusercontent.com/openflighthpc/openflight-omnibus-builder/fix/web-suite-redesign/builders/flight-console-webapp/opt/flight/opt/www/landing-page/default/content/apps/console.md console.md | |
| get_app_config https://raw.githubusercontent.com/openflighthpc/openflight-omnibus-builder/fix/web-suite-redesign/builders/flight-desktop-webapp/opt/flight/opt/www/landing-page/default/content/apps/desktop.md desktop.md | |
| get_app_config https://raw.githubusercontent.com/openflighthpc/openflight-omnibus-builder/fix/web-suite-redesign/builders/flight-file-manager-webapp/opt/flight/opt/www/landing-page/default/content/apps/file-manager.md file-manager.md | |
| get_app_config https://raw.githubusercontent.com/openflighthpc/openflight-omnibus-builder/fix/web-suite-redesign/builders/flight-job-script-webapp/opt/flight/opt/www/landing-page/default/content/apps/job-script.md job-script.md | |
| # WebApp Components | |
| git clone https://github.com/openflighthpc/flight-webapp-components /tmp/webapp-components | |
| cd /tmp/webapp-components | |
| git checkout dev/front-end | |
| export REACT_APP_LOGIN_API_BASE_URL="/login/api/v0" | |
| yarn install | |
| yarn run build | |
| cd builder | |
| yarn add react-router-dom | |
| yarn install | |
| yarn run build | |
| cd .. | |
| bash bin/setup-yarn-link-webapp-components.sh | |
| mkdir -p $FLIGHT_ROOT/opt/www/landing-page/default/content/{js,styles} | |
| cp -vf builder/build/static/js/main.js $FLIGHT_ROOT/opt/www/landing-page/default/content/js/login.js | |
| cp -vf builder/build/static/css/main.css $FLIGHT_ROOT/opt/www/landing-page/default/content/styles/login.css | |
| # Console WebApp | |
| clone_and_install https://github.com/openflighthpc/flight-console-webapp dev/front-end $FLIGHT_ROOT/opt/console-webapp | |
| cp $FLIGHT_ROOT/opt/console-webapp_orig/build/config.json $FLIGHT_ROOT/opt/console-webapp/build/ | |
| # Desktop WebApp | |
| clone_and_install https://github.com/openflighthpc/flight-desktop-webapp dev/front-end $FLIGHT_ROOT/opt/desktop-webapp | |
| cp $FLIGHT_ROOT/opt/desktop-webapp_orig/build/config.json $FLIGHT_ROOT/opt/desktop-webapp/build/ | |
| # File Manager | |
| git clone https://github.com/openflighthpc/flight-file-manager /tmp/file-manager | |
| cd /tmp/file-manager | |
| git checkout dev/front-end-continue | |
| cd client | |
| bash bin/yarn-link-webapp-components.sh | |
| yarn install | |
| yarn run build | |
| mv $FLIGHT_ROOT/opt/file-manager-webapp/ $FLIGHT_ROOT/opt/file-manager-webapp_orig | |
| rsync -auv . $FLIGHT_ROOT/opt/file-manager-webapp/ | |
| cp $FLIGHT_ROOT/opt/file-manager-webapp_orig/build/config.json $FLIGHT_ROOT/opt/file-manager-webapp/build/ | |
| # Flight Job | |
| git clone https://github.com/openflighthpc/flight-job-script-service /tmp/job-script-service | |
| cd /tmp/job-script-service | |
| git checkout dev/front-end | |
| cd client | |
| bash bin/yarn-link-webapp-components.sh | |
| yarn install | |
| yarn run build | |
| mv $FLIGHT_ROOT/opt/job-script-webapp/ $FLIGHT_ROOT/opt/job-script-webapp_orig | |
| rsync -auv . $FLIGHT_ROOT/opt/job-script-webapp/ | |
| cp $FLIGHT_ROOT/opt/job-script-webapp_orig/build/config.json $FLIGHT_ROOT/opt/job-script-webapp/build/ | |
| echo "If web suite is already running then landing-page compile and restart the services" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment