Skip to content

Commit 1406561

Browse files
committed
opening pr to show diff of #511
Signed-off-by: vsoch <[email protected]>
1 parent be3bbd3 commit 1406561

32 files changed

+312
-47
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ and **Merged pull requests**. Critical items to know are:
1414
The versions coincide with releases on pip. Only major versions will be released as tags on Github.
1515

1616
## [0.0.x](https://github.com/singularityhub/singularity-hpc/tree/main) (0.0.x)
17+
- support for installing to symlink tree (0.0.49)
18+
- also including cleanup of symlink tree on uninstall
19+
- ability to set custom config variable on the fly with -c
1720
- Properly cleanup empty module directories, and asking to remove a container that doesn't exist now logs a _warning_ (0.0.48)
1821
- wrapper script generation permissions error (0.0.47)
1922
- fixing but with stream command repeating output (0.0.46)

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,4 +290,4 @@
290290

291291

292292
def setup(app):
293-
app.add_stylesheet("sphinx-argparse.css")
293+
app.add_css_file("sphinx-argparse.css")

docs/getting_started/user-guide.rst

+72-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ You can then easily install, load, and use modules:
5252
$ module load biocontainers/samtools
5353
$ samtools
5454
55+
Or set a configuration value on the fly for any command:
56+
57+
.. code-block:: console
58+
59+
$ shpc install -c set:symlink_base:/tmp/modules biocontainers/samtools
5560
5661
The above assumes that you've installed the software, and have already
5762
added the modules folder to be seen by your module software. If your module
@@ -174,11 +179,17 @@ variable replacement. A summary table of variables is included below, and then f
174179
* - container_tech
175180
- The container technology to use (singularity or podman)
176181
- singularity
182+
* - symlink_base
183+
- If set, where you want to install a simplified module tree to using ``--symlink-tree``
184+
- $root_dir/symlinks
185+
* - symlink_tree
186+
- If set to true, ALWAYS generate a symlink tree given that a symlink base is defined regardless of ``--symlink-tree`` flag
187+
- false
177188
* - updated_at
178189
- a timestamp to keep track of when you last saved
179190
- never
180191
* - default_version
181-
- A boolean to indicate generating a .version file (LMOD or lua modules only)
192+
- A boolean to indicate whether a default version will be arbitrarily chosen, when multiple versions are available, and none is explicitly requested
182193
- true
183194
* - singularity_module
184195
- if defined, add to module script to load this Singularity module first
@@ -233,6 +244,14 @@ variable replacement. A summary table of variables is included below, and then f
233244
- All features default to null
234245

235246

247+
Note that any configuration value can be set permanently by using ``shpc config``
248+
or manually editing the file, but you can also set config values "one off" as follows:
249+
250+
.. code-block:: console
251+
252+
$ shpc install -c set:symlink_base:/tmp/modules ghcr.io/autamus/clingo
253+
254+
236255
These settings will be discussed in more detail in the following sections.
237256

238257
Features
@@ -359,6 +378,58 @@ you can add or remove entries via the config variable ``registry``
359378
# Note that "add" is used for lists of things (e.g., the registry config variable is a list)
360379
and "set" is used to set a key value pair.
361380

381+
Symlink Base
382+
------------
383+
384+
By default, your modules are installed to your ``module_base`` described above with a complete
385+
namespace, meaning the container registry from where they arise. We do this so that the namespace
386+
is consistent and there are no conflicts. However, if you want a simplified tree to install from,
387+
meaning the module full names are _just_ the final container name, you can set the ``symlink_base``
388+
in your settings to a different root. For example, let's say we want to install a set of modules.
389+
We can use the default ``symlink_base`` of ``$root_dir/symlinks`` or set our own ``symlink_base``
390+
in the settings.yaml. We could do:
391+
392+
.. code-block:: console
393+
394+
$ shpc install ghcr.io/autamus/clingo --symlink-tree
395+
$ shpc install ghcr.io/autamus/samtools --symlink-tree
396+
397+
Then, for example, if you want to load the modules, you'll see the shorter names are
398+
available!
399+
400+
.. code-block:: console
401+
402+
$ module use ./symlinks
403+
$ module load clingo/5.5.1/module
404+
405+
This is much more efficient compared to the install that uses the full paths:
406+
407+
.. code-block:: console
408+
409+
$ module use ./modules
410+
$ module load ghcr.io/autamus/clingo/5.5.1/module
411+
412+
Since we install based on the container name *and* version tag, this even gives you
413+
the ability to install versions from different container bases in the same root.
414+
If there is a conflict, you will be given the option to exit (and abort) or continue.
415+
Finally, if you need an easy way to run through the containers you've already installed
416+
to create the links:
417+
418+
419+
.. code-block:: console
420+
421+
for module in $(shpc list); do
422+
shpc install $module --symlink-tree
423+
done
424+
425+
And that will reinstall the modules you have installed, but in their symlink tree location.
426+
427+
428+
.. warning::
429+
430+
Be cautious about creating symlinks in containers or other contexts where a bind
431+
could eliminate the symlink or make the path non-existent.
432+
362433

363434
Module Names
364435
------------

shpc/client/__init__.py

+18-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,17 @@ def get_parser():
4040
help="custom path to settings file.",
4141
)
4242

43+
# On the fly updates to config params
44+
parser.add_argument(
45+
"-c",
46+
dest="config_params",
47+
help=""""customize a config value on the fly to ADD/SET/REMOVE for a command
48+
shpc -c set:key:value <command> <args>
49+
shpc -c add:registry:/tmp/registry <command> <args>
50+
shpc -c rm:registry:/tmp/registry""",
51+
action="append",
52+
)
53+
4354
parser.add_argument(
4455
"--version",
4556
dest="version",
@@ -89,6 +100,13 @@ def get_parser():
89100
"install_recipe",
90101
help="recipe to install\nshpc install python\nshpc install python:3.9.5-alpine",
91102
)
103+
install.add_argument(
104+
"--symlink-tree",
105+
dest="symlink",
106+
help="install to symlink tree too.",
107+
default=False,
108+
action="store_true",
109+
)
92110

93111
# List installed modules
94112
listing = subparsers.add_parser("list", description="list installed modules.")
@@ -147,7 +165,6 @@ def get_parser():
147165

148166
config.add_argument(
149167
"--central",
150-
"-c",
151168
dest="central",
152169
help="make edits to the central config file.",
153170
default=False,

shpc/client/add.py

+3
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,7 @@ def main(args, parser, extra, subparser):
1313
module=args.module,
1414
container_tech=args.container_tech,
1515
)
16+
17+
# Update config settings on the fly
18+
cli.settings.update_params(args.config_params)
1619
cli.add(args.sif_path[0], args.module_id[0])

shpc/client/check.py

+3
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,7 @@ def main(args, parser, extra, subparser):
1313
module=args.module,
1414
container_tech=args.container_tech,
1515
)
16+
17+
# Update config settings on the fly
18+
cli.settings.update_params(args.config_params)
1619
cli.check(args.module_name)

shpc/client/config.py

+5-18
Original file line numberDiff line numberDiff line change
@@ -33,25 +33,12 @@ def main(args, parser, extra, subparser):
3333
return cli.settings.inituser()
3434
if command == "edit":
3535
return cli.settings.edit()
36-
elif command in ["set", "add", "remove"]:
37-
for param in args.params:
38-
if ":" not in param:
39-
logger.warning(
40-
"Param %s is missing a :, should be key:value pair. Skipping."
41-
% param
42-
)
43-
continue
4436

45-
key, value = param.split(":", 1)
46-
if command == "set":
47-
cli.settings.set(key, value)
48-
logger.info("Updated %s to be %s" % (key, value))
49-
elif command == "add":
50-
cli.settings.add(key, value)
51-
logger.info("Added %s to %s" % (key, value))
52-
elif command == "remove":
53-
cli.settings.remove(key, value)
54-
logger.info("Removed %s from %s" % (key, value))
37+
if command in ["set", "add", "remove"]:
38+
39+
# Update each param
40+
for param in args.params:
41+
cli.settings.update_param(command, param)
5542

5643
# Save settings
5744
cli.settings.save()

shpc/client/docgen.py

+2
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,6 @@ def main(args, parser, extra, subparser):
1313
module=args.module,
1414
container_tech=args.container_tech,
1515
)
16+
# Update config settings on the fly
17+
cli.settings.update_params(args.config_params)
1618
cli.docgen(args.module_name)

shpc/client/get.py

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ def main(args, parser, extra, subparser):
1414
container_tech=args.container_tech,
1515
)
1616

17+
# Update config settings on the fly
18+
cli.settings.update_params(args.config_params)
1719
result = cli.get(args.module_name, args.env_file)
1820
if result:
1921
print(result)

shpc/client/inspect.py

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ def main(args, parser, extra, subparser):
1515
settings_file=args.settings_file,
1616
container_tech=args.container_tech,
1717
)
18+
19+
# Update config settings on the fly
20+
cli.settings.update_params(args.config_params)
1821
metadata = cli.inspect(args.module_name)
1922

2023
# Case 1: dump entire thing as json

shpc/client/install.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,9 @@ def main(args, parser, extra, subparser):
1616
module=args.module,
1717
container_tech=args.container_tech,
1818
)
19-
cli.install(args.install_recipe)
19+
20+
# Update config settings on the fly
21+
cli.settings.update_params(args.config_params)
22+
23+
# And do the install
24+
cli.install(args.install_recipe, symlink=args.symlink)

shpc/client/listing.py

+2
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,6 @@ def main(args, parser, extra, subparser):
1414
container_tech=args.container_tech,
1515
)
1616

17+
# Update config settings on the fly
18+
cli.settings.update_params(args.config_params)
1719
cli.list(args.pattern, args.names_only, short=args.short)

shpc/client/namespace.py

+3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ def main(args, parser, extra, subparser):
1313

1414
cli = get_client(quiet=args.quiet, settings_file=args.settings_file)
1515

16+
# Update config settings on the fly
17+
cli.settings.update_params(args.config_params)
18+
1619
# Case 1: we need to unset a namespace
1720
if not args.namespace:
1821
sys.exit("Please choose: shpc use <namespace> or shpc unset.")

shpc/client/shell.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,17 @@ def main(args, parser, extra, subparser):
3434
def create_client(args):
3535
from shpc.main import get_client
3636

37-
return get_client(
37+
cli = get_client(
3838
quiet=args.quiet,
3939
settings_file=args.settings_file,
4040
module=args.module,
4141
container_tech=args.container_tech,
4242
)
4343

44+
# Update config settings on the fly
45+
cli.settings.update_params(args.config_params)
46+
return cli
47+
4448

4549
def ipython(args):
4650
"""

shpc/client/show.py

+3
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,7 @@ def main(args, parser, extra, subparser):
88
from shpc.main import get_client
99

1010
cli = get_client(quiet=args.quiet, settings_file=args.settings_file)
11+
12+
# Update config settings on the fly
13+
cli.settings.update_params(args.config_params)
1114
cli.show(args.name, names_only=not args.versions, filter_string=args.filter_string)

shpc/client/test.py

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ def main(args, parser, extra, subparser):
1414
container_tech=args.container_tech,
1515
)
1616

17+
# Update config settings on the fly
18+
cli.settings.update_params(args.config_params)
1719
cli.test(
1820
args.module_name,
1921
test_exec=args.test_exec,

shpc/client/uninstall.py

+3
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,7 @@ def main(args, parser, extra, subparser):
1313
module=args.module,
1414
container_tech=args.container_tech,
1515
)
16+
17+
# Update config settings on the fly
18+
cli.settings.update_params(args.config_params)
1619
cli.uninstall(args.uninstall_recipe, args.force)

0 commit comments

Comments
 (0)