generated from interTwin-eu/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #194 from dciangot/dev_guide_fix
fix deps and upgrade to vk 1.11 + initial attempt for IAM doc
- Loading branch information
Showing
10 changed files
with
193 additions
and
78 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
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,19 @@ | ||
--- | ||
sidebar_position: 4 | ||
--- | ||
|
||
# Configure OpenID connect identity providers | ||
|
||
In alternative of the Github authentication flow, we support any OpenID compliant identity provider. The following are a few examples. | ||
|
||
## EGI Check-in | ||
|
||
:::warning | ||
TBD | ||
::: | ||
|
||
## Indigo IAM | ||
|
||
:::warning | ||
TBD | ||
::: |
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,31 @@ | ||
# Install SLURM plugin as a systemd | ||
|
||
```bash | ||
VERSION=0.2.2 | ||
|
||
wget -O $HOME/.interlink/bin/slurm-plugin https://github.com/interTwin-eu/interLink/releases/download/${VERSION}/interlink-sidecar-slurm_Linux_x86_64 | ||
chmod +x $HOME/.interlink/bin/slurm-plugin | ||
|
||
mkdir -p $HOME/.config/systemd/user | ||
|
||
cat <<EOF > $HOME/.config/systemd/user/slurm-plugin.service | ||
[Unit] | ||
Description=This Unit is needed to automatically start the SLURM sidecar at system startup | ||
After=network.target | ||
[Service] | ||
Type=simple | ||
ExecStart=$HOME/.interlink/bin/slurm-plugin | ||
Environment="INTERLINKCONFIGPATH=$HOME/.interlink/config/InterLinkConfig.yaml" | ||
StandardOutput=file:$HOME/.interlink/logs/plugin.log | ||
StandardError=file:$HOME/.interlink/logs/plugin.log | ||
[Install] | ||
WantedBy=multi-user.target | ||
EOF | ||
|
||
systemctl --user daemon-reload | ||
systemctl --user enable slurm-plugin.service | ||
|
||
systemctl --user start slurm-plugin.service | ||
``` |
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 @@ | ||
[Unit] | ||
Description=This Unit is needed to automatically start the SLURM sidecar at system startup | ||
After=network.target | ||
|
||
[Service] | ||
Type=simple | ||
ExecStart=$HOME/.interlink/bin/slurm-plugin | ||
Environment="INTERLINKCONFIGPATH=$HOME/.interlink/config/InterLinkConfig.yaml" | ||
StandardOutput=file:$HOME/.interlink/logs/plugin.out | ||
StandardError=file:$HOME/.interlink/logs/plugin.err | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
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 @@ | ||
[Unit] | ||
Description=This Unit is needed to automatically start the SLURM sidecar at system startup | ||
After=network.target | ||
|
||
[Service] | ||
Type=simple | ||
ExecStart=$HOME/.interlink/bin/slurm-plugin | ||
Environment="INTERLINKCONFIGPATH=$HOME/.interlink/config/InterLinkConfig.yaml" | ||
StandardOutput=file:$HOME/.interlink/logs/plugin.out | ||
StandardError=file:$HOME/.interlink/logs/plugin.err | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
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,14 @@ | ||
[Unit] | ||
Description=This Unit is needed to automatically start the SLURM sidecar at system startup | ||
After=network.target | ||
|
||
[Service] | ||
Type=simple | ||
ExecStart=$HOME/.interlink/bin/slurm-plugin | ||
Environment="INTERLINKCONFIGPATH=$HOME/.interlink/config/InterLinkConfig.yaml" | ||
Environment="SHARED_FS=true" | ||
StandardOutput=file:$HOME/.interlink/logs/plugin.out | ||
StandardError=file:$HOME/.interlink/logs/plugin.err | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
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.