-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-ignis-export and ignis-export scripts for copying IgnisHPC out of co…
…ntainer -ignis-submit can now run outside of the submitter container -future implementation of udocker has been dropper from slurm -new slurm dockerfile to extract ignis-slurm from a container -docker scheduler important fixes
- Loading branch information
1 parent
33ac561
commit 0d2c4d8
Showing
19 changed files
with
174 additions
and
100 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
if [ $# -ne 1 ] | ||
then echo "usage ignis-export <out-folder>" | ||
exit | ||
fi | ||
|
||
cd "$1" | ||
mkdir -p ignis/lib | ||
cp -R ${IGNIS_HOME}/bin ignis/ | ||
cp -R ${IGNIS_HOME}/etc ignis/ | ||
cp -R ${IGNIS_HOME}/backend ignis/ | ||
cp -R ${IGNIS_HOME}/lib/java ignis/lib/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
if [ $# -ne 1 ] | ||
then echo "usage ignis-export-all <out-folder>" | ||
exit | ||
fi | ||
|
||
cd "$1" | ||
mkdir -p ignis | ||
cp -R ${IGNIS_HOME}/* ignis/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
|
||
ARG REGISTRY="" | ||
ARG NAMESPACE="ignishpc/" | ||
ARG TAG="" | ||
FROM ${REGISTRY}${NAMESPACE}common${TAG} | ||
ARG RELPATH="" | ||
|
||
COPY ${RELPATH}ignis-slurm ${IGNIS_HOME}/bin | ||
RUN chmod +x ${IGNIS_HOME}/bin/ignis-slurm |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
#script is inside IGNIS_HOME so if it is not set, we can discover it. | ||
if [[ -z "${IGNIS_HOME}" ]]; then | ||
export IGNIS_HOME=$(builtin cd $(dirname "$0"); cd ..; pwd) | ||
fi | ||
|
||
exec ${IGNIS_HOME}/backend/jre/bin/java -cp "${IGNIS_HOME}/lib/java/*" org.ignis.submitter.SlurmSubmit "$@" |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
#!/bin/bash | ||
#script is inside IGNIS_HOME so if it is not set, we can discover it. | ||
if [[ -z "${IGNIS_HOME}" ]]; then | ||
export IGNIS_HOME=$(builtin cd $(dirname "$0"); cd ..; pwd) | ||
fi | ||
|
||
exec ${IGNIS_HOME}/backend/jre/bin/java -cp "${IGNIS_HOME}/lib/java/*" org.ignis.submitter.Submit "$@" |
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
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
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
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
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
Oops, something went wrong.