Skip to content

Commit 38a28b0

Browse files
committed
updates to podman containers to pull digest and then tag and modulefiles
Signed-off-by: vsoch <[email protected]>
1 parent 4e7f409 commit 38a28b0

File tree

7 files changed

+57
-20
lines changed

7 files changed

+57
-20
lines changed

docs/getting_started/user-guide.rst

+6-5
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,17 @@ you should do that first.
1313
Why shpc?
1414
=========
1515

16-
While the library is currently focused on Singularity containers (hence
17-
the name) it's created to be modular, meaning that if another container technology
18-
is wanted, it can be added. The module name would still be appropriate, as
19-
singularity does imply a single entity that is "one library to rule them all!"
16+
Singularity Registry HPC is created to be modular, meaning that we support a distinct
17+
set of container technologies and module systems. The name of the library "Singularity
18+
Registry HPC" does not refer specifically to the container technology "Singularity,"
19+
but more generally implies the same spirit -- a single entity that is "one library to rule them all!"
20+
2021

2122
What is a registry?
2223
===================
2324

2425
A registry consists of a database of local containers configuration files, ``container.yaml``
25-
files organized in the root of the shpc install in the ``registry`` folder. The namespace
26+
files organized in the root of the shpc install in one of the ``registry`` folders. The namespace
2627
is organized by Docker unique resources identifiers. When you install an identifier
2728
as we saw above, the container binaries and customized module files are added to
2829
the ``module_dir`` defined in your settings, which defaults to ``modules`` in the

shpc/client/__init__.py

+10
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,16 @@ def get_parser():
142142
help="update configuration settings. Use set or get to see or set information.",
143143
formatter_class=argparse.RawTextHelpFormatter,
144144
)
145+
146+
config.add_argument(
147+
"--central",
148+
"-c",
149+
dest="central",
150+
help="make edits to the central config file.",
151+
default=False,
152+
action="store_true",
153+
)
154+
145155
config.add_argument(
146156
"params",
147157
nargs="*",

shpc/client/config.py

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
__copyright__ = "Copyright 2021, Vanessa Sochat"
33
__license__ = "MPL 2.0"
44

5+
import shpc.defaults as defaults
56
from shpc.logger import logger
67
import sys
78

@@ -18,6 +19,10 @@ def main(args, parser, extra, subparser):
1819
# The first "param" is either set of get
1920
command = args.params.pop(0)
2021

22+
# If the user wants the central config file
23+
if args.central:
24+
args.settings_file = defaults.default_settings_file
25+
2126
validate = True if not command == "edit" else False
2227
cli = get_client(
2328
quiet=args.quiet, settings_file=args.settings_file, validate=validate

shpc/main/container/docker.py

+14-3
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,11 @@ def registry_pull(self, module_dir, container_dir, config, tag):
6060
if pull_type != "docker":
6161
logger.exit("%s only supports Docker (oci registry) pulls." % self.command)
6262

63-
# Podman doesn't keep a record of digest->tag, so we use tag
64-
uri = "%s:%s" % (self.add_registry(config.docker), tag.name)
65-
return self.pull(uri)
63+
tag_uri = "%s:%s" % (self.add_registry(config.docker), tag.name)
64+
tag_digest = "%s@%s" % (self.add_registry(config.docker), tag.digest)
65+
self.pull(tag_digest)
66+
# Podman doesn't keep a record of digest->tag, so we tag after
67+
return self.tag(tag_digest, tag_uri)
6668

6769
def pull(self, uri):
6870
"""
@@ -73,6 +75,15 @@ def pull(self, uri):
7375
logger.exit("There was an issue pulling %s" % uri)
7476
return uri
7577

78+
def tag(self, image, tag_as):
79+
"""
80+
Given a container URI, tag as something else.
81+
"""
82+
res = shpc.utils.run_command([self.command, "tag", image, tag_as])
83+
if res["return_code"] != 0:
84+
logger.exit("There was an issue tagging %s as %s" % (image, tag_as))
85+
return tag_as
86+
7687
def inspect(self, image):
7788
"""
7889
Inspect an image

shpc/main/modules/templates/docker.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ Container:
1616
Commands include:
1717
1818
- {|module_name|}-run:
19-
{{ command }} run -i{% if tty %}t{% endif %} -u `id -u`:`id -g` --rm {% if envfile %}--env-file {{ module_dir }}/{{ envfile }}{% endif %} {% if bindpaths %}-v {{ bindpaths }} -v ${PWD} -w ${PWD} {% endif %}<container> "$@"
19+
{{ command }} run -i{% if tty %}t{% endif %} -u `id -u`:`id -g` --rm {% if envfile %}--env-file {{ module_dir }}/{{ envfile }} {% endif %} {% if bindpaths %}-v {{ bindpaths }} {% endif %}-v ${PWD} -w ${PWD} <container> "$@"
2020
- {|module_name|}-shell:
21-
{{ command }} run -i{% if tty %}t{% endif %} -u `id -u`:`id -g` --rm {% if envfile %}--env-file {{ module_dir }}/{{ envfile }}{% endif %} {% if bindpaths %}-v {{ bindpaths }} --entrypoint {{ shell }} -v ${PWD} -w ${PWD} {% endif %}<container>
21+
{{ command }} run -i{% if tty %}t{% endif %} -u `id -u`:`id -g` --rm {% if envfile %}--env-file {{ module_dir }}/{{ envfile }} {% endif %} {% if bindpaths %}-v {{ bindpaths }} --entrypoint {{ shell }} {% endif %}-v ${PWD} -w ${PWD}<container>
2222
- {|module_name|}-exec:
23-
{{ command }} run -i{% if tty %}t{% endif %} -u `id -u`:`id -g` --rm --entrypoint "" {% if envfile %}--env-file {{ module_dir }}/{{ envfile }}{% endif %} {% if bindpaths %}-v {{ bindpaths }} {% endif %} -v ${PWD} -w ${PWD} <container> "$@"
23+
{{ command }} run -i{% if tty %}t{% endif %} -u `id -u`:`id -g` --rm --entrypoint "" {% if envfile %}--env-file {{ module_dir }}/{{ envfile }} {% endif %} {% if bindpaths %}-v {{ bindpaths }} {% endif %} -v ${PWD} -w ${PWD} <container> "$@"
2424
- {|module_name|}-inspect:
2525
{{ command }} inspect <container>
2626

shpc/main/modules/templates/docker.tcl

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ proc ModulesHelp { } {
1515
puts stderr " - {{ image }}"
1616
puts stderr "Commands include:"
1717
puts stderr " - {|module_name|}-run:"
18-
puts stderr " {{ command }} run -i{% if tty %}t{% endif %} -u `id -u`:`id -g` --rm {% if envfile %}--env-file {{ module_dir }}/{{ envfile }}{% endif %} {% if bindpaths %}-v {{ bindpaths }} {% endif %} -v . -w . <container>"
18+
puts stderr " {{ command }} run -i{% if tty %}t{% endif %} -u `id -u`:`id -g` --rm {% if envfile %}--env-file {{ module_dir }}/{{ envfile }} {% endif %} {% if bindpaths %}-v {{ bindpaths }} {% endif %} -v . -w . <container>"
1919
puts stderr " - {|module_name|}-shell:"
20-
puts stderr " {{ command }} run -i{% if tty %}t{% endif %} -u `id -u`:`id -g` --rm --entrypoint {{ shell }}{% if envfile %} --env-file {{ module_dir }}/{{ envfile }}{% endif %} {% if bindpaths %}-v {{ bindpaths }} {% endif %} -v . -w . <container>"
20+
puts stderr " {{ command }} run -i{% if tty %}t{% endif %} -u `id -u`:`id -g` --rm --entrypoint \"\"{% if envfile %} --env-file {{ module_dir }}/{{ envfile }} {% endif %} {% if bindpaths %}-v {{ bindpaths }} {% endif %} -v . -w . <container>"
2121
puts stderr " - {|module_name|}-exec:"
22-
puts stderr " {{ command }} run -i{% if tty %}t{% endif %} -u `id -u`:`id -g` --rm --entrypoint \"\" {% if envfile %} --env-file {{ module_dir }}/{{ envfile }}{% endif %} {% if bindpaths %}-v {{ bindpaths }} {% endif %} -v . -w . <container> $*"
22+
puts stderr " {{ command }} run -i{% if tty %}t{% endif %} -u `id -u`:`id -g` --rm --entrypoint \"\" {% if envfile %} --env-file {{ module_dir }}/{{ envfile }} {% endif %} {% if bindpaths %}-v {{ bindpaths }} {% endif %} -v . -w . <container> $*"
2323
puts stderr " - {|module_name|}-inspect:"
2424
puts stderr " {{ command }} inspect <container>"
2525
{% if aliases %}{% for alias in aliases %} puts stderr " - {{ alias.name }}:"
26-
puts stderr " {{ command }} run -i{% if tty %}t{% endif %} -u `id -u`:`id -g` --entrypoint {{ alias.entrypoint }} {% if envfile %}--envfile {{ module_dir }}/{{ envfile }} {% endif %}{% if bindpaths %}-v {{ bindpaths }} {% endif %}{% if alias.options %}{{ alias.options }} {% endif %} -v . -w . <container> {{ alias.args }}"
26+
puts stderr " {{ command }} run -i{% if tty %}t{% endif %} --rm -u `id -u`:`id -g` --entrypoint {{ alias.entrypoint }} {% if envfile %}--envfile {{ module_dir }}/{{ envfile }} {% endif %}{% if bindpaths %}-v {{ bindpaths }} {% endif %}{% if alias.options %}{{ alias.options }} {% endif %} -v . -w . <container> {{ alias.args }}"
2727
{% endfor %}{% endif %}
2828

2929
puts stderr "For each of the above, you can export:"
@@ -59,7 +59,7 @@ conflict {{ name }}
5959
set shellCmd "{{ command }} \${PODMAN_OPTS} run \${PODMAN_COMMAND_OPTS} -u `id -u`:`id -g` --rm -i{% if tty %}t{% endif %} --entrypoint {{ shell }} {% if envfile %}--env-file {{ module_dir }}/{{ envfile }}{% endif %} {% if bindpaths %}-v {{ bindpaths }} {% endif %} -v $workdir -w $workdir ${containerPath}"
6060

6161
# execCmd needs entrypoint to be the executor
62-
set execCmd "{{ command }} \${PODMAN_OPTS} run -i{% if tty %}t{% endif %} \${PODMAN_COMMAND_OPTS} -u `id -u`:`id -g` --rm {% if envfile %} --env-file {{ module_dir }}/{{ envfile }}{% endif %} {% if bindpaths %}-v {{ bindpaths }} -v $workdir -w $workdir {% endif %} "
62+
set execCmd "{{ command }} \${PODMAN_OPTS} run -i{% if tty %}t{% endif %} \${PODMAN_COMMAND_OPTS} -u `id -u`:`id -g` --rm {% if envfile %} --env-file {{ module_dir }}/{{ envfile }}{% endif %} {% if bindpaths %}-v {{ bindpaths }}{% endif %} -v $workdir -w $workdir"
6363
set runCmd "{{ command }} \${PODMAN_OPTS} run -i{% if tty %}t{% endif %} \${PODMAN_COMMAND_OPTS} -u `id -u`:`id -g` --rm {% if envfile %}--env-file {{ module_dir }}/{{ envfile }}{% endif %} {% if bindpaths %}-v {{ bindpaths }} {% endif %} -v $workdir -w $workdir ${containerPath}"
6464
set inspectCmd "{{ command }} \${PODMAN_OPTS} inspect ${containerPath}"
6565

@@ -68,7 +68,7 @@ set-alias {|module_name|}-shell "${shellCmd}"
6868

6969
# exec functions to provide "alias" to module commands
7070
{% if aliases %}{% for alias in aliases %}
71-
set-alias {{ alias.name }} "${execCmd} {% if alias.options %} {{ alias.options }} {% endif %} --entrypoint {{ alias.entrypoint }} ${containerPath} {{ alias.command }}"
71+
set-alias {{ alias.name }} "${execCmd} {% if alias.options %} {{ alias.options }} {% endif %} --entrypoint {{ alias.entrypoint }} ${containerPath} {{ alias.args }}"
7272
{% endfor %}{% endif %}
7373

7474
# A customizable exec function

shpc/main/settings.py

+13-3
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@ def add(self, key, value):
121121
current = self._settings.get(key)
122122
if current and not isinstance(current, list):
123123
logger.exit("You cannot only add to a list variable.")
124-
current.append(value)
124+
# Add to the beginning of the list
125+
current = current + [value]
125126
value = list(set(current))
126127
self._settings[key] = value
127128
self.change_validate(key, value)
@@ -197,12 +198,21 @@ def delete(self, key):
197198
del self._settings[key]
198199

199200
def save(self, filename=None):
201+
"""
202+
Save settings, but do not change order of anything.
203+
"""
200204
filename = filename or self.settings_file
201205
if not filename:
202206
logger.exit("A filename is required to save to.")
203207
yaml = YAML()
204-
with open(filename, "w") as fd:
205-
yaml.dump(self._settings, fd)
208+
209+
# This requires Python 3.7 support
210+
try:
211+
with open(filename, "w") as fd:
212+
yaml.dump(self._settings, fd, sort_keys=False)
213+
except:
214+
with open(filename, "w") as fd:
215+
yaml.dump(self._settings, fd)
206216

207217
def __iter__(self):
208218
for key, value in self.__dict__.items():

0 commit comments

Comments
 (0)