-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs and setup: updating Makefile to work * makefile update: move scripts to osism subdirectory, adapt makefile to contain osism sepcific commands and more general commands * fix: reset requirement.txt to normal version * feat: reorganise menu, fix: add dependencies to commands, feat: add menu for container related commands * fix: remove duplicate script * fix: change name of get configs file Signed-off-by: Boekhorst <[email protected]>
- Loading branch information
1 parent
1dfe578
commit 7c82cef
Showing
3 changed files
with
58 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
unset SSH_AUTH_SOCK |
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,28 @@ | ||
# Helperscript: Gets configs from testbed | ||
# | ||
# NOTE: this is for test purposes and specific for the OISISM testbed | ||
# it requires .ssh/config to be set accordingly, e.g.: | ||
# | ||
# Host testbed-* | ||
# StrictHostKeyChecking no | ||
# IdentityFile <id_rsa of testbed> | ||
# IdentitiesOnly yes | ||
# user dragon | ||
# | ||
# Host testbed-manager | ||
# Hostname <ip of manager of testbed> | ||
# | ||
# Host testbed-node-0 | ||
# Hostname 192.168.16.10 | ||
# | ||
# Host testbed-node-1 | ||
# Hostname 192.168.16.11 | ||
# Host testbed-node-2 | ||
# Hostname 192.168.16.12 | ||
# | ||
|
||
# copy .kube to ./.k8s | ||
scp -r testbed-manager:.kube ./.k8s | ||
|
||
# copy /etc/ceph/ from node1 to ./.k8s | ||
ssh testbed-manager "docker cp cephclient:/etc/ceph /tmp/cephclientconfig" && scp -r testbed-manager:/tmp/cephclientconfig ./.ceph && ssh testbed-manager "rm -rf /tmp/cephclientconfig" |