Skip to content

Commit

Permalink
Merge pull request #16 from slr71/master
Browse files Browse the repository at this point in the history
CORE-1728: added a conversion to use the url-import image in Harbor
  • Loading branch information
slr71 authored Apr 13, 2022
2 parents 4719847 + 3e48bed commit 0a4088b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions migrations/000032_new_url_import_repo.down.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
BEGIN;

SET search_path = public, pg_catalog;

UPDATE container_images
SET name = 'discoenv/url-import'
WHERE id = '15959300-b972-4571-ace2-081af0909599';

COMMIT;
9 changes: 9 additions & 0 deletions migrations/000032_new_url_import_repo.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
BEGIN;

SET search_path = public, pg_catalog;

UPDATE container_images
SET name = 'harbor.cyverse.org/de/url-import'
WHERE id = '15959300-b972-4571-ace2-081af0909599';

COMMIT;

0 comments on commit 0a4088b

Please sign in to comment.