-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
http-fetcher : Now using correct Harbor v2 API Local image list is based on tag list retrieved via API file-fetcher : Created JSON struct with name, digest and repository URL This data, with optional tag name, can be used to make docker pull commands using only url + digest
- Loading branch information
1 parent
ca048a0
commit 64c31e8
Showing
9 changed files
with
381 additions
and
136 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,2 @@ | ||
HARBOR_USERNAME=admin | ||
HARBOR_PASSWORD=Harbor12345 |
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 @@ | ||
.env |
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 |
---|---|---|
@@ -1,19 +1,19 @@ | ||
{ | ||
"results": [ | ||
"images": [ | ||
{ | ||
"name": "alpine:3.1" | ||
"name": "album-server:album2.1.0", | ||
"digest": "sha256:74b3ab50ecaf1765d8066221fbcbbbb2df5f2fe898f7d25c480db4fb6ac2effd", | ||
"repositoryUrl": "https://demo.goharbor.io/v2/myproject" | ||
}, | ||
{ | ||
"name": "alpine:3.2" | ||
"name": "album-server:latest", | ||
"digest": "sha256:0d420809e7f6edca49a308d0233534991aebce5f54ebb3f97ee87dff8b62b701", | ||
"repositoryUrl": "https://demo.goharbor.io/v2/myproject" | ||
}, | ||
{ | ||
"name": "alpine:3.3" | ||
}, | ||
{ | ||
"name": "ubuntu:latest" | ||
}, | ||
{ | ||
"name": "nginx:1.19" | ||
"name": "album-server:zot-linux-arm64", | ||
"digest": "sha256:671b2e3cdcf32a36335949845fa22883daaeced02082595e71df71ee64eae30f", | ||
"repositoryUrl": "https://demo.goharbor.io/v2/myproject" | ||
} | ||
] | ||
} | ||
] | ||
} |
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.