refactor: rename go module from zotregistry.io/zot to zotregistry.dev/zot (#2187)
Signed-off-by: Andrei Aaron <aaaron@luxoft.com>
10
Makefile
|
@ -164,25 +164,25 @@ gen-protobuf: check-not-freebds $(PROTOC)
|
|||
.PHONY: binary-minimal
|
||||
binary-minimal: EXTENSIONS=
|
||||
binary-minimal: modcheck build-metadata
|
||||
env CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zot-$(OS)-$(ARCH)-minimal $(BUILDMODE_FLAGS) -tags containers_image_openpgp -v -trimpath -ldflags "-X zotregistry.io/zot/pkg/api/config.ReleaseTag=${RELEASE_TAG} -X zotregistry.io/zot/pkg/api/config.Commit=${COMMIT} -X zotregistry.io/zot/pkg/api/config.BinaryType=minimal -X zotregistry.io/zot/pkg/api/config.GoVersion=${GO_VERSION} -s -w" ./cmd/zot
|
||||
env CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zot-$(OS)-$(ARCH)-minimal $(BUILDMODE_FLAGS) -tags containers_image_openpgp -v -trimpath -ldflags "-X zotregistry.dev/zot/pkg/api/config.ReleaseTag=${RELEASE_TAG} -X zotregistry.dev/zot/pkg/api/config.Commit=${COMMIT} -X zotregistry.dev/zot/pkg/api/config.BinaryType=minimal -X zotregistry.dev/zot/pkg/api/config.GoVersion=${GO_VERSION} -s -w" ./cmd/zot
|
||||
|
||||
.PHONY: binary
|
||||
binary: $(if $(findstring ui,$(BUILD_LABELS)), ui)
|
||||
binary: modcheck build-metadata
|
||||
env CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zot-$(OS)-$(ARCH) $(BUILDMODE_FLAGS) -tags $(BUILD_LABELS),containers_image_openpgp -v -trimpath -ldflags "-X zotregistry.io/zot/pkg/api/config.ReleaseTag=${RELEASE_TAG} -X zotregistry.io/zot/pkg/api/config.Commit=${COMMIT} -X zotregistry.io/zot/pkg/api/config.BinaryType=$(extended-name) -X zotregistry.io/zot/pkg/api/config.GoVersion=${GO_VERSION} -s -w" ./cmd/zot
|
||||
env CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zot-$(OS)-$(ARCH) $(BUILDMODE_FLAGS) -tags $(BUILD_LABELS),containers_image_openpgp -v -trimpath -ldflags "-X zotregistry.dev/zot/pkg/api/config.ReleaseTag=${RELEASE_TAG} -X zotregistry.dev/zot/pkg/api/config.Commit=${COMMIT} -X zotregistry.dev/zot/pkg/api/config.BinaryType=$(extended-name) -X zotregistry.dev/zot/pkg/api/config.GoVersion=${GO_VERSION} -s -w" ./cmd/zot
|
||||
|
||||
.PHONY: binary-debug
|
||||
binary-debug: $(if $(findstring ui,$(BUILD_LABELS)), ui)
|
||||
binary-debug: modcheck swaggercheck build-metadata
|
||||
env CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zot-$(OS)-$(ARCH)-debug $(BUILDMODE_FLAGS) -tags $(BUILD_LABELS),debug,containers_image_openpgp -v -gcflags all='-N -l' -ldflags "-X zotregistry.io/zot/pkg/api/config.ReleaseTag=${RELEASE_TAG} -X zotregistry.io/zot/pkg/api/config.Commit=${COMMIT} -X zotregistry.io/zot/pkg/api/config.BinaryType=$(extended-name) -X zotregistry.io/zot/pkg/api/config.GoVersion=${GO_VERSION}" ./cmd/zot
|
||||
env CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zot-$(OS)-$(ARCH)-debug $(BUILDMODE_FLAGS) -tags $(BUILD_LABELS),debug,containers_image_openpgp -v -gcflags all='-N -l' -ldflags "-X zotregistry.dev/zot/pkg/api/config.ReleaseTag=${RELEASE_TAG} -X zotregistry.dev/zot/pkg/api/config.Commit=${COMMIT} -X zotregistry.dev/zot/pkg/api/config.BinaryType=$(extended-name) -X zotregistry.dev/zot/pkg/api/config.GoVersion=${GO_VERSION}" ./cmd/zot
|
||||
|
||||
.PHONY: cli
|
||||
cli: modcheck build-metadata
|
||||
env CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zli-$(OS)-$(ARCH) $(BUILDMODE_FLAGS) -tags $(BUILD_LABELS),search,containers_image_openpgp -v -trimpath -ldflags "-X zotregistry.io/zot/pkg/api/config.Commit=${COMMIT} -X zotregistry.io/zot/pkg/api/config.BinaryType=$(extended-name) -X zotregistry.io/zot/pkg/api/config.GoVersion=${GO_VERSION} -s -w" ./cmd/zli
|
||||
env CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zli-$(OS)-$(ARCH) $(BUILDMODE_FLAGS) -tags $(BUILD_LABELS),search,containers_image_openpgp -v -trimpath -ldflags "-X zotregistry.dev/zot/pkg/api/config.Commit=${COMMIT} -X zotregistry.dev/zot/pkg/api/config.BinaryType=$(extended-name) -X zotregistry.dev/zot/pkg/api/config.GoVersion=${GO_VERSION} -s -w" ./cmd/zli
|
||||
|
||||
.PHONY: bench
|
||||
bench: modcheck build-metadata
|
||||
env CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zb-$(OS)-$(ARCH) $(BUILDMODE_FLAGS) -tags $(BUILD_LABELS),containers_image_openpgp -v -trimpath -ldflags "-X zotregistry.io/zot/pkg/api/config.Commit=${COMMIT} -X zotregistry.io/zot/pkg/api/config.BinaryType=$(extended-name) -X zotregistry.io/zot/pkg/api/config.GoVersion=${GO_VERSION} -s -w" ./cmd/zb
|
||||
env CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go build -o bin/zb-$(OS)-$(ARCH) $(BUILDMODE_FLAGS) -tags $(BUILD_LABELS),containers_image_openpgp -v -trimpath -ldflags "-X zotregistry.dev/zot/pkg/api/config.Commit=${COMMIT} -X zotregistry.dev/zot/pkg/api/config.BinaryType=$(extended-name) -X zotregistry.dev/zot/pkg/api/config.GoVersion=${GO_VERSION} -s -w" ./cmd/zb
|
||||
|
||||
.PHONY: exporter-minimal
|
||||
exporter-minimal: EXTENSIONS=
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# zot [![build](https://github.com/project-zot/zot/actions/workflows/build.yaml/badge.svg?branch=main)](https://github.com/project-zot/zot/actions/workflows/build.yaml) [![test](https://github.com/project-zot/zot/actions/workflows/test.yaml/badge.svg?branch=main)](https://github.com/project-zot/zot/actions/workflows/test.yaml) [![nightly jobs](https://github.com/project-zot/zot/actions/workflows/nightly.yaml/badge.svg)](https://github.com/project-zot/zot/actions/workflows/nightly.yaml) [![codecov.io](http://codecov.io/github/project-zot/zot/coverage.svg?branch=main)](http://codecov.io/github/project-zot/zot?branch=main) [![Conformance Results](https://github.com/project-zot/zot/workflows/conformance/badge.svg)](https://github.com/project-zot/zot/actions?query=workflow%3Aconformance) [![CodeQL](https://github.com/project-zot/zot/workflows/CodeQL/badge.svg)](https://github.com/project-zot/zot/actions?query=workflow%3ACodeQL) [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/5425/badge)](https://bestpractices.coreinfrastructure.org/projects/5425) [![Go Reference](https://pkg.go.dev/badge/zotregistry.io/zot.svg)](https://pkg.go.dev/zotregistry.io/zot)
|
||||
# zot [![build](https://github.com/project-zot/zot/actions/workflows/build.yaml/badge.svg?branch=main)](https://github.com/project-zot/zot/actions/workflows/build.yaml) [![test](https://github.com/project-zot/zot/actions/workflows/test.yaml/badge.svg?branch=main)](https://github.com/project-zot/zot/actions/workflows/test.yaml) [![nightly jobs](https://github.com/project-zot/zot/actions/workflows/nightly.yaml/badge.svg)](https://github.com/project-zot/zot/actions/workflows/nightly.yaml) [![codecov.io](http://codecov.io/github/project-zot/zot/coverage.svg?branch=main)](http://codecov.io/github/project-zot/zot?branch=main) [![Conformance Results](https://github.com/project-zot/zot/workflows/conformance/badge.svg)](https://github.com/project-zot/zot/actions?query=workflow%3Aconformance) [![CodeQL](https://github.com/project-zot/zot/workflows/CodeQL/badge.svg)](https://github.com/project-zot/zot/actions?query=workflow%3ACodeQL) [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/5425/badge)](https://bestpractices.coreinfrastructure.org/projects/5425) [![Go Reference](https://pkg.go.dev/badge/zotregistry.dev/zot.svg)](https://pkg.go.dev/zotregistry.dev/zot)
|
||||
|
||||
**zot**: a production-ready vendor-neutral OCI image registry - images stored in [OCI image format](https://github.com/opencontainers/image-spec), [distribution specification](https://github.com/opencontainers/distribution-spec) on-the-wire, that's it!
|
||||
|
||||
|
|
|
@ -463,4 +463,4 @@ sigs.k8s.io/kustomize/api|https://github.com/kubernetes-sigs/kustomize/blob/6ce0
|
|||
sigs.k8s.io/kustomize/kyaml|https://github.com/kubernetes-sigs/kustomize/blob/6ce0bf390ce3/kyaml/LICENSE|Apache-2.0
|
||||
sigs.k8s.io/yaml/goyaml.v2|https://github.com/kubernetes-sigs/yaml/blob/v1.4.0/goyaml.v2/LICENSE|Apache-2.0
|
||||
sigs.k8s.io/yaml|https://github.com/kubernetes-sigs/yaml/blob/v1.4.0/LICENSE|Apache-2.0
|
||||
zotregistry.io/zot|Unknown|Apache-2.0
|
||||
zotregistry.dev/zot|Unknown|Apache-2.0
|
||||
|
|
|
@ -20,8 +20,8 @@ import (
|
|||
ispec "github.com/opencontainers/image-spec/specs-go/v1"
|
||||
"gopkg.in/resty.v1"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/common"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/common"
|
||||
)
|
||||
|
||||
func makeHTTPGetRequest(url string, resultPtr interface{}, client *resty.Client) error {
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
"github.com/rs/zerolog/log"
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
)
|
||||
|
||||
// "zb" - performance benchmark and stress.
|
||||
|
|
|
@ -5,8 +5,8 @@ import (
|
|||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
)
|
||||
|
||||
func TestIntegration(t *testing.T) {
|
||||
|
|
|
@ -21,7 +21,7 @@ import (
|
|||
godigest "github.com/opencontainers/go-digest"
|
||||
"gopkg.in/resty.v1"
|
||||
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -6,7 +6,7 @@ package main
|
|||
import (
|
||||
"os"
|
||||
|
||||
cli "zotregistry.io/zot/pkg/cli/client"
|
||||
cli "zotregistry.dev/zot/pkg/cli/client"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
|
@ -8,9 +8,9 @@ import (
|
|||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
cli "zotregistry.io/zot/pkg/cli/client"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
cli "zotregistry.dev/zot/pkg/cli/client"
|
||||
)
|
||||
|
||||
func TestIntegration(t *testing.T) {
|
||||
|
|
|
@ -3,7 +3,7 @@ package main
|
|||
import (
|
||||
"os"
|
||||
|
||||
cli "zotregistry.io/zot/pkg/cli/server"
|
||||
cli "zotregistry.dev/zot/pkg/cli/server"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
|
@ -5,9 +5,9 @@ import (
|
|||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
cli "zotregistry.io/zot/pkg/cli/server"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
cli "zotregistry.dev/zot/pkg/cli/server"
|
||||
)
|
||||
|
||||
func TestIntegration(t *testing.T) {
|
||||
|
|
|
@ -6,7 +6,7 @@ package main
|
|||
import (
|
||||
"os"
|
||||
|
||||
"zotregistry.io/zot/pkg/exporter/cli"
|
||||
"zotregistry.dev/zot/pkg/exporter/cli"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
202
demos/cosign.rec
|
@ -9,7 +9,7 @@
|
|||
[1.527833, "o", "\r\u001b[32m$\b\n\u001b[39m \b"]
|
||||
[1.892826, "i", "\r"]
|
||||
[1.892941, "o", "\n \b"]
|
||||
[1.984005, "o", "\u001b[H\u001b[K{\"level\":\"info\",\"params\":{\"Version\":\"1.0.0-dev\",\"GoVersion\":\"go1.17.5\",\"Commit\":\"v1.3.8-rc3-38a110314ba3af67f970ed0ac90\r\n\u001b[K\u001b[1;119H09102edf7208d3\",\"BinaryType\":\"extended\",\"AccessControl\":null,\"Storage\":{\"Dedupe\":true,\"GC\":true,\"Commit\":false,\"GCDelay\"\r\n\u001b[K\u001b[2;119H\":3600000000000,\"RootDirectory\":\"/var/lib/registry\",\"StorageDriver\":null,\"SubPaths\":null},\"HTTP\":{\"Address\":\"0.0.0.0\",\"P\r\n\u001b[K\u001b[3;119HPort\":\"5000\",\"TLS\":null,\"Auth\":null,\"RawAccessControl\":null,\"Realm\":\"\",\"AllowReadAccess\":false,\"ReadOnly\":false,\"Ratelim\r\n\u001b[K\u001b[4;119Hmit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.io/zot/\r\n\u001b[K\u001b[5;119H/pkg/api/controller.go:103\",\"time\":\"2022-04-11T07:52:53.967114224Z\",\"message\":\"configuration settings\"}\r\n\u001b[K{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"max. inotify watches\":\"2147483647\",\"goroutine\":1,\"caller\":\"zotregis\r\n\u001b[K\u001b[7;119Hstry.io/zot/pkg/api/controller.go:91\",\"time\":\"2022-04-11T07:52:53.967201658Z\",\"message\":\"runtime params\"}\r\n\u001b[K"]
|
||||
[1.984005, "o", "\u001b[H\u001b[K{\"level\":\"info\",\"params\":{\"Version\":\"1.0.0-dev\",\"GoVersion\":\"go1.17.5\",\"Commit\":\"v1.3.8-rc3-38a110314ba3af67f970ed0ac90\r\n\u001b[K\u001b[1;119H09102edf7208d3\",\"BinaryType\":\"extended\",\"AccessControl\":null,\"Storage\":{\"Dedupe\":true,\"GC\":true,\"Commit\":false,\"GCDelay\"\r\n\u001b[K\u001b[2;119H\":3600000000000,\"RootDirectory\":\"/var/lib/registry\",\"StorageDriver\":null,\"SubPaths\":null},\"HTTP\":{\"Address\":\"0.0.0.0\",\"P\r\n\u001b[K\u001b[3;119HPort\":\"5000\",\"TLS\":null,\"Auth\":null,\"RawAccessControl\":null,\"Realm\":\"\",\"AllowReadAccess\":false,\"ReadOnly\":false,\"Ratelim\r\n\u001b[K\u001b[4;119Hmit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.dev/zot/\r\n\u001b[K\u001b[5;119H/pkg/api/controller.go:103\",\"time\":\"2022-04-11T07:52:53.967114224Z\",\"message\":\"configuration settings\"}\r\n\u001b[K{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"max. inotify watches\":\"2147483647\",\"goroutine\":1,\"caller\":\"zotregis\r\n\u001b[K\u001b[7;119Hstry.dev/zot/pkg/api/controller.go:91\",\"time\":\"2022-04-11T07:52:53.967201658Z\",\"message\":\"runtime params\"}\r\n\u001b[K"]
|
||||
[2.332847, "i", "\u0001"]
|
||||
[2.573071, "i", "\t"]
|
||||
[2.573482, "o", " \n\n"]
|
||||
|
@ -22,46 +22,46 @@
|
|||
[8.34582, "i", "\r"]
|
||||
[8.346124, "o", "\n \b"]
|
||||
[9.259429, "o", "Getting image source signatures\r\n \b"]
|
||||
[9.264994, "o", "\u001b[H\u001b[Kit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.io/zot/\r\n\u001b[K\u001b[1;119H/pkg/api/controller.go:103\",\"time\":\"2022-04-11T07:52:53.967114224Z\",\"message\":\"configuration settings\"}\r\n\u001b[K{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"max. inotify watches\":\"2147483647\",\"goroutine\":1,\"caller\":\"zotregis\r\n\u001b[K\u001b[3;119Hstry.io/zot/pkg/api/controller.go:91\",\"time\":\"2022-04-11T07:52:53.967201658Z\",\"message\":\"runtime params\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34746\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"8.246µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"\r\n\u001b[K\u001b[6;119H\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":15,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\"\r\n\u001b[K\u001b[7;119H\",\"time\":\"2022-04-11T07:53:01.24804926Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[9.267079, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b\r\n\u001b[K\u001b[1;119Hb3d348b9eb9ca7df: no such file or directory\",\"blob\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266\r\n\u001b[K\u001b[2;119H6a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":65,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"time\r\n\u001b[K\u001b[3;119He\":\"2022-04-11T07:53:01.250149941Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"message\":\"failed to st\r\n\u001b[K\u001b[4;119Htat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[6;119Hdf\",\"goroutine\":65,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:53:01.250247114Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[7B"]
|
||||
[9.267794, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[1;119Hdf\",\"goroutine\":65,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:53:01.250247114Z\",\r\n\u001b[K\u001b[2;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34748\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:554879bb\r\n\u001b[K\u001b[4;119Hb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":404,\"latency\":\"1.469364ms\",\"bodySize\":407,\"heade\r\n\u001b[K\u001b[5;119Hers\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"go\r\n\u001b[K\u001b[6;119Horoutine\":65,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:01.250991895Z\",\"message\":\"HTT\r\n\u001b[K\u001b[7;119HTP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[9.77295, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b\r\n\u001b[K\u001b[1;119Hb3d348b9eb9ca7df: no such file or directory\",\"blob\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266\r\n\u001b[K\u001b[2;119H6a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":67,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"time\r\n\u001b[K\u001b[3;119He\":\"2022-04-11T07:53:01.755927777Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"message\":\"failed to st\r\n\u001b[K\u001b[4;119Htat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[6;119Hdf\",\"goroutine\":67,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"tim"]
|
||||
[9.773132, "o", "e\":\"2022-04-11T07:53:01.756012536Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[7B\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[1;119Hdf\",\"goroutine\":67,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:53:01.756012536Z\",\r\n\u001b[K\u001b[2;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34750\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:554879bb\r\n\u001b[K\u001b[4;119Hb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":404,\"latency\":\"280.768µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[5;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[6;119Hroutine\":67,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:01.756148592Z\",\"mes"]
|
||||
[9.264994, "o", "\u001b[H\u001b[Kit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.dev/zot/\r\n\u001b[K\u001b[1;119H/pkg/api/controller.go:103\",\"time\":\"2022-04-11T07:52:53.967114224Z\",\"message\":\"configuration settings\"}\r\n\u001b[K{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"max. inotify watches\":\"2147483647\",\"goroutine\":1,\"caller\":\"zotregis\r\n\u001b[K\u001b[3;119Hstry.dev/zot/pkg/api/controller.go:91\",\"time\":\"2022-04-11T07:52:53.967201658Z\",\"message\":\"runtime params\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34746\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"8.246µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"\r\n\u001b[K\u001b[6;119H\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":15,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\"\r\n\u001b[K\u001b[7;119H\",\"time\":\"2022-04-11T07:53:01.24804926Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[9.267079, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b\r\n\u001b[K\u001b[1;119Hb3d348b9eb9ca7df: no such file or directory\",\"blob\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266\r\n\u001b[K\u001b[2;119H6a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":65,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"time\r\n\u001b[K\u001b[3;119He\":\"2022-04-11T07:53:01.250149941Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"message\":\"failed to st\r\n\u001b[K\u001b[4;119Htat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[6;119Hdf\",\"goroutine\":65,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:53:01.250247114Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[7B"]
|
||||
[9.267794, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[1;119Hdf\",\"goroutine\":65,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:53:01.250247114Z\",\r\n\u001b[K\u001b[2;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34748\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:554879bb\r\n\u001b[K\u001b[4;119Hb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":404,\"latency\":\"1.469364ms\",\"bodySize\":407,\"heade\r\n\u001b[K\u001b[5;119Hers\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"go\r\n\u001b[K\u001b[6;119Horoutine\":65,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:01.250991895Z\",\"message\":\"HTT\r\n\u001b[K\u001b[7;119HTP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[9.77295, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b\r\n\u001b[K\u001b[1;119Hb3d348b9eb9ca7df: no such file or directory\",\"blob\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266\r\n\u001b[K\u001b[2;119H6a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":67,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"time\r\n\u001b[K\u001b[3;119He\":\"2022-04-11T07:53:01.755927777Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"message\":\"failed to st\r\n\u001b[K\u001b[4;119Htat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[6;119Hdf\",\"goroutine\":67,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"tim"]
|
||||
[9.773132, "o", "e\":\"2022-04-11T07:53:01.756012536Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[7B\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[1;119Hdf\",\"goroutine\":67,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:53:01.756012536Z\",\r\n\u001b[K\u001b[2;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34750\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:554879bb\r\n\u001b[K\u001b[4;119Hb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":404,\"latency\":\"280.768µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[5;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[6;119Hroutine\":67,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:01.756148592Z\",\"mes"]
|
||||
[9.773203, "o", "sage\":\"HTTP\r\n\u001b[K\u001b[7;119HP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[9.775705, "o", "\u001b[H\u001b[K300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":404,\"latency\":\"280.768µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[1;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[2;119Hroutine\":67,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:01.756148592Z\",\"message\":\"HTTP\r\n\u001b[K\u001b[3;119HP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34754\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[5;119HtusCode\":202,\"latency\":\"1.086855ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-L\r\n\u001b[K\u001b[6;119HLength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":69,\"ca\r\n\u001b[K\u001b[7;119Haller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:01.758698279Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[9.775705, "o", "\u001b[H\u001b[K300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":404,\"latency\":\"280.768µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[1;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[2;119Hroutine\":67,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:01.756148592Z\",\"message\":\"HTTP\r\n\u001b[K\u001b[3;119HP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34754\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[5;119HtusCode\":202,\"latency\":\"1.086855ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-L\r\n\u001b[K\u001b[6;119HLength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":69,\"ca\r\n\u001b[K\u001b[7;119Haller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:01.758698279Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[9.85909, "o", "\u001b[KCopying blob 554879bb3004 done\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[20A\u001b[A\u001b[KCopying blob 554879bb3004 done\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[20A"]
|
||||
[9.859338, "o", "\u001b[H\u001b[KusCode\":202,\"latency\":\"1.086855ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-L\r\n\u001b[K\u001b[1;119HLength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":69,\"ca\r\n\u001b[K\u001b[2;119Haller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:01.758698279Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34756\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/3dcddc\r\n\u001b[K\u001b[4;119Hca9-e320-4c48-aa26-a996487171d4\",\"statusCode\":202,\"latency\":\"81.964986ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gz\r\n\u001b[K\u001b[5;119Hzip\"],\"Connection\":[\"close\"],\"Content-Length\":[\"772806\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distributio\r\n\u001b[K\u001b[6;119Hon-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":71,\"caller\":\"zotregistry.io/zot/pkg/ap\r\n\u001b[K\u001b[7;119Hpi/session.go:132\",\"time\":\"2022-04-11T07:53:01.842347694Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[8B"]
|
||||
[9.859338, "o", "\u001b[H\u001b[KusCode\":202,\"latency\":\"1.086855ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-L\r\n\u001b[K\u001b[1;119HLength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":69,\"ca\r\n\u001b[K\u001b[2;119Haller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:01.758698279Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34756\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/3dcddc\r\n\u001b[K\u001b[4;119Hca9-e320-4c48-aa26-a996487171d4\",\"statusCode\":202,\"latency\":\"81.964986ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gz\r\n\u001b[K\u001b[5;119Hzip\"],\"Connection\":[\"close\"],\"Content-Length\":[\"772806\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distributio\r\n\u001b[K\u001b[6;119Hon-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":71,\"caller\":\"zotregistry.dev/zot/pkg/ap\r\n\u001b[K\u001b[7;119Hpi/session.go:132\",\"time\":\"2022-04-11T07:53:01.842347694Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[8B"]
|
||||
[9.859508, "o", "\u001b[A\u001b[KCopying blob 554879bb3004 done\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[20A"]
|
||||
[9.861174, "o", "\u001b[H\u001b[Kller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:01.758698279Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34756\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/3dcddc\r\n\u001b[K\u001b[2;119Hca"]
|
||||
[9.861328, "o", "9-e320-4c48-aa26-a996487171d4\",\"statusCode\":202,\"latency\":\"81.964986ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gz\r\n\u001b[K\u001b[3;119Hzip\"],\"Connection\":[\"close\"],\"Content-Length\":[\"772806\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distributio\r\n\u001b[K\u001b[4;119Hon-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":71,\"caller\":\"zotregistry.io/zot/pkg/ap\r\n\u001b[K\u001b[5;119Hpi/session.go:132\",\"time\":\"2022-04-11T07:53:01.842347694Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":25,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T07:53:01.844397079Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[8B"]
|
||||
[9.862847, "o", "\u001b[H\u001b[Ki/session.go:132\",\"time\":\"2022-04-11T07:53:01.842347694Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":25,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[2;119H4-11T07:53:01.844397079Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/3dcddca9-e320-4c48-aa26-a996487171d4\",\"dstDigest\":\"sha256:55\r\n\u001b[K\u001b[4;119H54879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/554879bb3\r\n\u001b[K\u001b[5;119H300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":25,\"caller\":\"zotregistry.io/zot/pkg/storage/storag\r\n\u001b[K\u001b[6;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:53:01.846033457Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[7;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K\u001b[8B"]
|
||||
[9.864937, "o", "\u001b[H\u001b[K4879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/554879bb3\r\n\u001b[K\u001b[1;119H300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":25,\"caller\":\"zotregistry.io/zot/pkg/storage/storag\r\n\u001b[K\u001b[2;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:53:01.846033457Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[3;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/3dcddca9-e320-4c48-aa26-a996487171d4\",\"dst\":\"/var/lib/regist\r\n\u001b[K\u001b[5;119Htry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":25,\"caller\":\"zotr\r\n\u001b[K\u001b[6;119Hregistry.io/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:5"]
|
||||
[9.865094, "o", "3:01.848178432Z\",\"caller\":\"zotregistry.io/zot/pkg\r\n\u001b[K\u001b[7;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K\u001b[8B\u001b[H\u001b[Kegistry.io/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:53:01.848178432Z\",\"caller\":\"zotregistry.io/zot/pkg\r\n\u001b[K\u001b[1;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34758\",\"method\":\"PUT\",\"path\":\"/v2/busybox/blobs/uploads/3dcddca9\r\n\u001b[K\u001b[3;119H9-e320-4c48-aa26-a996487171d4?digest=sha256%3A554879"]
|
||||
[9.861174, "o", "\u001b[H\u001b[Kller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:01.758698279Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34756\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/3dcddc\r\n\u001b[K\u001b[2;119Hca"]
|
||||
[9.861328, "o", "9-e320-4c48-aa26-a996487171d4\",\"statusCode\":202,\"latency\":\"81.964986ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gz\r\n\u001b[K\u001b[3;119Hzip\"],\"Connection\":[\"close\"],\"Content-Length\":[\"772806\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distributio\r\n\u001b[K\u001b[4;119Hon-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":71,\"caller\":\"zotregistry.dev/zot/pkg/ap\r\n\u001b[K\u001b[5;119Hpi/session.go:132\",\"time\":\"2022-04-11T07:53:01.842347694Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":25,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T07:53:01.844397079Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[8B"]
|
||||
[9.862847, "o", "\u001b[H\u001b[Ki/session.go:132\",\"time\":\"2022-04-11T07:53:01.842347694Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":25,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[2;119H4-11T07:53:01.844397079Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/3dcddca9-e320-4c48-aa26-a996487171d4\",\"dstDigest\":\"sha256:55\r\n\u001b[K\u001b[4;119H54879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/554879bb3\r\n\u001b[K\u001b[5;119H300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":25,\"caller\":\"zotregistry.dev/zot/pkg/storage/storag\r\n\u001b[K\u001b[6;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:53:01.846033457Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[7;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K\u001b[8B"]
|
||||
[9.864937, "o", "\u001b[H\u001b[K4879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/554879bb3\r\n\u001b[K\u001b[1;119H300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":25,\"caller\":\"zotregistry.dev/zot/pkg/storage/storag\r\n\u001b[K\u001b[2;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:53:01.846033457Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[3;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/3dcddca9-e320-4c48-aa26-a996487171d4\",\"dst\":\"/var/lib/regist\r\n\u001b[K\u001b[5;119Htry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":25,\"caller\":\"zotr\r\n\u001b[K\u001b[6;119Hregistry.dev/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:5"]
|
||||
[9.865094, "o", "3:01.848178432Z\",\"caller\":\"zotregistry.dev/zot/pkg\r\n\u001b[K\u001b[7;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K\u001b[8B\u001b[H\u001b[Kegistry.dev/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:53:01.848178432Z\",\"caller\":\"zotregistry.dev/zot/pkg\r\n\u001b[K\u001b[1;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34758\",\"method\":\"PUT\",\"path\":\"/v2/busybox/blobs/uploads/3dcddca9\r\n\u001b[K\u001b[3;119H9-e320-4c48-aa26-a996487171d4?digest=sha256%3A554879"]
|
||||
[9.86512, "o", "bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusC\r\n\u001b[K\u001b[4;119HCode\":201,\"latency\":\"4.054838ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Leng\r\n\u001b[K\u001b[5;119Hgth\":[\"0\"],\"Content-Type\":[\"application/oc"]
|
||||
[9.865153, "o", "tet-stream\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\r\n\u001b[K\u001b[6;119H[\"Go-http-client/1.1\"]},\"goroutine\":25,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:01.\r\n\u001b[K\u001b[7;119H.848290212Z\",\"message\":\"HTTP API"]
|
||||
[9.865153, "o", "tet-stream\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\r\n\u001b[K\u001b[6;119H[\"Go-http-client/1.1\"]},\"goroutine\":25,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:01.\r\n\u001b[K\u001b[7;119H.848290212Z\",\"message\":\"HTTP API"]
|
||||
[9.865171, "o", "\"}\r\n\u001b[K\u001b[8B"]
|
||||
[10.302851, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/busybox/blobs/sha256/02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a0\r\n\u001b[K\u001b[1;119H096cda667e5fdc8b: no such file or directory\",\"blob\":\"/var/lib/registry/busybox/blobs/sha256/02611b034a2eaf78ac6fca8f91b8\r\n\u001b[K\u001b[2;119H88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":72,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"time\r\n\u001b[K\u001b[3;119He\":\"2022-04-11T07:53:02.285682529Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"message\":\"failed to st\r\n\u001b[K\u001b[4;119Htat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8\r\n\u001b[K\u001b[6;119H8b\",\"goroutine\":72,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:53:02.285817834Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[8B"]
|
||||
[10.303536, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8\r\n\u001b[K\u001b[1;119H8b\",\"goroutine\":72,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:53:02.285817834Z\",\r\n\u001b[K\u001b[2;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34760\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:02611b03\r\n\u001b[K\u001b[4;119H34a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusCode\":404,\"latency\":\"692.213µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[5;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[6;119Hroutine\":72,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:02.286318115Z\",\"message\":\"HTTP\r\n\u001b[K\u001b[7;119HP API\"}\r\n\u001b[K\u001b[8B"]
|
||||
[10.3055, "o", "\u001b[H\u001b[K4a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusCode\":404,\"latency\":\"692.213µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[1;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[2;119Hroutine\":72,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:02.286318115Z\",\"message\":\"HTTP\r\n\u001b[K\u001b[3;119HP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34762\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[5;119HtusCode\":202,\"latency\":\"188.595µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Le\r\n\u001b[K\u001b[6;119Hength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":74,\"cal\r\n\u001b[K\u001b[7;119Hller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:02.288571194Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[8B"]
|
||||
[10.302851, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/busybox/blobs/sha256/02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a0\r\n\u001b[K\u001b[1;119H096cda667e5fdc8b: no such file or directory\",\"blob\":\"/var/lib/registry/busybox/blobs/sha256/02611b034a2eaf78ac6fca8f91b8\r\n\u001b[K\u001b[2;119H88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":72,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"time\r\n\u001b[K\u001b[3;119He\":\"2022-04-11T07:53:02.285682529Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"message\":\"failed to st\r\n\u001b[K\u001b[4;119Htat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8\r\n\u001b[K\u001b[6;119H8b\",\"goroutine\":72,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:53:02.285817834Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[8B"]
|
||||
[10.303536, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8\r\n\u001b[K\u001b[1;119H8b\",\"goroutine\":72,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:53:02.285817834Z\",\r\n\u001b[K\u001b[2;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34760\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:02611b03\r\n\u001b[K\u001b[4;119H34a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusCode\":404,\"latency\":\"692.213µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[5;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[6;119Hroutine\":72,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:02.286318115Z\",\"message\":\"HTTP\r\n\u001b[K\u001b[7;119HP API\"}\r\n\u001b[K\u001b[8B"]
|
||||
[10.3055, "o", "\u001b[H\u001b[K4a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusCode\":404,\"latency\":\"692.213µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[1;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[2;119Hroutine\":72,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:02.286318115Z\",\"message\":\"HTTP\r\n\u001b[K\u001b[3;119HP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34762\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[5;119HtusCode\":202,\"latency\":\"188.595µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Le\r\n\u001b[K\u001b[6;119Hength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":74,\"cal\r\n\u001b[K\u001b[7;119Hller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:02.288571194Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[8B"]
|
||||
[10.305961, "o", "Copying config 02611b034a [======================================] 575.0b / 575.0b\r\n \b\u001b[A\u001b[KCopying config 02611b034a done\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[19A"]
|
||||
[10.306106, "o", "\u001b[A\u001b[KCopying config 02611b034a done\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[19A"]
|
||||
[10.307137, "o", "\u001b[H\u001b[KusCode\":202,\"latency\":\"188.595µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Le\r\n\u001b[K\u001b[1;119Hength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":74,\"cal\r\n\u001b[K\u001b[2;119Hller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:02.288571194Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34766\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/172e74\r\n\u001b[K\u001b[4;119H487-2eb8-4018-9e74-e2717ca0438c\",\"statusCode\":202,\"latency\":\"211.237µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\r\n\u001b[K\u001b[5;119Hp\"],\"Connection\":[\"close\"],\"Content-Length\":[\"575\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api\r\n\u001b[K\u001b[6;119Hi-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":41,\"caller\":\"zotregistry.io/zot/pkg/api/ses\r\n\u001b[K\u001b[7;119Hssion.go:132\",\"time\":\"2022-04-11T07:53:02.290314854Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[9B"]
|
||||
[10.308437, "o", "\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:02.288571194Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34766\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/172e74\r\n\u001b[K\u001b[2;119H487-2eb8-4018-9e74-e2717ca0438c\",\"statusCode\":202,\"latency\":\"211.237µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\r\n\u001b[K\u001b[3;119Hp\"],\"Connection\":[\"close\"],\"Content-Length\":[\"575\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api\r\n\u001b[K\u001b[4;119Hi-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":41,\"caller\":\"zotregistry.io/zot/pkg/api/ses\r\n\u001b[K\u001b[5;119Hssion.go:132\",\"time\":\"2022-04-11T07:53:02.290314854Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0"]
|
||||
[10.308576, "o", ",\"goroutine\":43,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T07:53:02.291704639Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[Ksion.go:132\",\"time\":\"2022-04-11T07:53:02.290314854Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.Co"]
|
||||
[10.308763, "o", "ntentLength\":0,\"goroutine\":43,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[2;119H4-11T07:53:02.291704639Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/172e7487-2eb8-4018-9e74-e2717ca0438c\",\"dstDigest\":\"sha256:02\r\n\u001b[K\u001b[4;119H2611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/02611b034\r\n\u001b[K\u001b[5;119H4a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":43,\"caller\":\"zotregistry.io/zot/pkg/storage/storag\r\n\u001b[K\u001b[6;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:53:02.291886121Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[7;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K\u001b[9B"]
|
||||
[10.312342, "o", "\u001b[H\u001b[K611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/02611b034\r\n\u001b[K\u001b[1;119H4a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":43,\"caller\":\"zotregistry.io/zot/pkg/storage/storag\r\n\u001b[K\u001b[2;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:53:02.291886121Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[3;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/172e7487-2eb8-4018-9e74-e2717ca0438c\",\"dst\":\"/var/lib/regist\r\n\u001b[K\u001b[5;119Htry/busybox/blobs/sha256/02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":43,\"caller\":\"zotr\r\n\u001b[K\u001b[6;119Hregistry.io/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:5"]
|
||||
[10.312493, "o", "3:02.295545014Z\",\"caller\":\"zotregistry.io/zot/pkg\r\n\u001b[K\u001b[7;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[Kegistry.io/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:53:02.295545014Z\",\"caller\":\"zotregistry.io/zot/pkg\r\n\u001b[K\u001b[1;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34768\",\"method\":\"PUT\",\"path\":\"/v2/busybox/blobs/uploads/172e7487\r\n\u001b[K\u001b[3;119H7-2eb8-4018-9e74-e2717ca0438c?digest=sha256%3A02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusC\r\n\u001b[K\u001b[4;119HCode\":201,\"latency\":\"3.988163ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Leng\r\n\u001b[K\u001b[5;119Hgth\":[\"0\"],\"Content-Type\":[\"application/oc"]
|
||||
[10.312517, "o", "tet-stream\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\r\n\u001b[K\u001b[6;119H[\"Go-http-client/1.1\"]},\"goroutine\":43,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:02.\r\n\u001b[K\u001b[7;119H.295663186Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[9B"]
|
||||
[10.307137, "o", "\u001b[H\u001b[KusCode\":202,\"latency\":\"188.595µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Le\r\n\u001b[K\u001b[1;119Hength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":74,\"cal\r\n\u001b[K\u001b[2;119Hller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:02.288571194Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34766\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/172e74\r\n\u001b[K\u001b[4;119H487-2eb8-4018-9e74-e2717ca0438c\",\"statusCode\":202,\"latency\":\"211.237µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\r\n\u001b[K\u001b[5;119Hp\"],\"Connection\":[\"close\"],\"Content-Length\":[\"575\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api\r\n\u001b[K\u001b[6;119Hi-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":41,\"caller\":\"zotregistry.dev/zot/pkg/api/ses\r\n\u001b[K\u001b[7;119Hssion.go:132\",\"time\":\"2022-04-11T07:53:02.290314854Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[9B"]
|
||||
[10.308437, "o", "\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:02.288571194Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34766\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/172e74\r\n\u001b[K\u001b[2;119H487-2eb8-4018-9e74-e2717ca0438c\",\"statusCode\":202,\"latency\":\"211.237µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\r\n\u001b[K\u001b[3;119Hp\"],\"Connection\":[\"close\"],\"Content-Length\":[\"575\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api\r\n\u001b[K\u001b[4;119Hi-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":41,\"caller\":\"zotregistry.dev/zot/pkg/api/ses\r\n\u001b[K\u001b[5;119Hssion.go:132\",\"time\":\"2022-04-11T07:53:02.290314854Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0"]
|
||||
[10.308576, "o", ",\"goroutine\":43,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T07:53:02.291704639Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[Ksion.go:132\",\"time\":\"2022-04-11T07:53:02.290314854Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.Co"]
|
||||
[10.308763, "o", "ntentLength\":0,\"goroutine\":43,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[2;119H4-11T07:53:02.291704639Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/172e7487-2eb8-4018-9e74-e2717ca0438c\",\"dstDigest\":\"sha256:02\r\n\u001b[K\u001b[4;119H2611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/02611b034\r\n\u001b[K\u001b[5;119H4a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":43,\"caller\":\"zotregistry.dev/zot/pkg/storage/storag\r\n\u001b[K\u001b[6;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:53:02.291886121Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[7;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K\u001b[9B"]
|
||||
[10.312342, "o", "\u001b[H\u001b[K611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/02611b034\r\n\u001b[K\u001b[1;119H4a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":43,\"caller\":\"zotregistry.dev/zot/pkg/storage/storag\r\n\u001b[K\u001b[2;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:53:02.291886121Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[3;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/172e7487-2eb8-4018-9e74-e2717ca0438c\",\"dst\":\"/var/lib/regist\r\n\u001b[K\u001b[5;119Htry/busybox/blobs/sha256/02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":43,\"caller\":\"zotr\r\n\u001b[K\u001b[6;119Hregistry.dev/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:5"]
|
||||
[10.312493, "o", "3:02.295545014Z\",\"caller\":\"zotregistry.dev/zot/pkg\r\n\u001b[K\u001b[7;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[Kegistry.dev/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:53:02.295545014Z\",\"caller\":\"zotregistry.dev/zot/pkg\r\n\u001b[K\u001b[1;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34768\",\"method\":\"PUT\",\"path\":\"/v2/busybox/blobs/uploads/172e7487\r\n\u001b[K\u001b[3;119H7-2eb8-4018-9e74-e2717ca0438c?digest=sha256%3A02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusC\r\n\u001b[K\u001b[4;119HCode\":201,\"latency\":\"3.988163ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Leng\r\n\u001b[K\u001b[5;119Hgth\":[\"0\"],\"Content-Type\":[\"application/oc"]
|
||||
[10.312517, "o", "tet-stream\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\r\n\u001b[K\u001b[6;119H[\"Go-http-client/1.1\"]},\"goroutine\":43,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:02.\r\n\u001b[K\u001b[7;119H.295663186Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[9B"]
|
||||
[10.313731, "o", "Writing manifest to image destination\r\n \b"]
|
||||
[10.315521, "o", "\u001b[H\u001b[K-2eb8-4018-9e74-e2717ca0438c?digest=sha256%3A02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusC\r\n\u001b[K\u001b[1;119HCode\":201,\"latency\":\"3.988163ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Leng\r\n\u001b[K\u001b[2;119Hgth\":[\"0\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\r\n\u001b[K\u001b[3;119H[\"Go-http-client/1.1\"]},\"goroutine\":43,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:02.\r\n\u001b[K\u001b[4;119H.295663186Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"blobPath\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d3\r\n\u001b[K\u001b[6;119H348b9eb9ca7df\",\"reference\":\"latest\",\"goroutine\":51,\"caller\":"]
|
||||
[10.315692, "o", "\"zotregistry.io/zot/pkg/storage/storage_fs.go:516\",\"time\":\"2\r\n\u001b[K\u001b[7;119H2022-04-11T07:53:02.298682766Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:516\",\"message\":\"manifest layers\"}\r\n\u001b[K\u001b[10B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:02.298946022Z\",\"message\":\"GC: got refe\r\n\u001b[K\u001b[1;119Herence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":51,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/"]
|
||||
[10.315521, "o", "\u001b[H\u001b[K-2eb8-4018-9e74-e2717ca0438c?digest=sha256%3A02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusC\r\n\u001b[K\u001b[1;119HCode\":201,\"latency\":\"3.988163ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Leng\r\n\u001b[K\u001b[2;119Hgth\":[\"0\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\r\n\u001b[K\u001b[3;119H[\"Go-http-client/1.1\"]},\"goroutine\":43,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:02.\r\n\u001b[K\u001b[4;119H.295663186Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"blobPath\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d3\r\n\u001b[K\u001b[6;119H348b9eb9ca7df\",\"reference\":\"latest\",\"goroutine\":51,\"caller\":"]
|
||||
[10.315692, "o", "\"zotregistry.dev/zot/pkg/storage/storage_fs.go:516\",\"time\":\"2\r\n\u001b[K\u001b[7;119H2022-04-11T07:53:02.298682766Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:516\",\"message\":\"manifest layers\"}\r\n\u001b[K\u001b[10B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:02.298946022Z\",\"message\":\"GC: got refe\r\n\u001b[K\u001b[1;119Herence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":51,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/"]
|
||||
[10.315729, "o", "pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:02.298974525Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[4;119H from root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":51,\"cal\r\n\u001b[K\u001b[6;119H"]
|
||||
[10.315886, "o", "ller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:02.299004091Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[10B\u001b[H\u001b[Kimage-spec/specs-go/v1\",\"goroutine\":51,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[1;119H07:53:02.29907803Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":51,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistr"]
|
||||
[10.315973, "o", "y.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:02.299111583Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"name\":\"time::Time\",\"goroutine\":51,\"caller\r\n\u001b[K\u001b[6;119"]
|
||||
[10.316166, "o", "Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:02.299181184Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside permitted packages\"}\r\n\u001b[K\u001b[10B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:"]
|
||||
[10.316195, "o", "53:02.299319655Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":51,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:02\r\n\u001b[K\u001b[3;119H2.299354019Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.oci.image.layer.v1.tar+gzip of blob\r\n\u001b[K\u001b[4;119Hb sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"gor"]
|
||||
[10.316398, "o", "outine\":51,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:02.299382723Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[10B\u001b[H\u001b[Ke\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":51,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:02\r\n\u001b[K\u001b[2;119H2.299476219Z\",\"message\":\"garbage collected 0 blobs\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34770\",\"method\":\"PUT\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[4;119Hat"]
|
||||
[10.316475, "o", "usCode\":201,\"latency\":\"1.151546ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-\r\n\u001b[K\u001b[5;119H-Length\":[\"347\"],\"Content-Type\":[\"application/vnd.oci.image.manifest.v1+json\"],\"Docker-Distribution-Api-Version\":[\"regis\r\n\u001b[K\u001b[6;119Hstry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":51,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[7;119Hme\":\"2022-04-11T07:53:02.299504703Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[10BStoring signatures\r\n \b"]
|
||||
[10.315886, "o", "ller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:02.299004091Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[10B\u001b[H\u001b[Kimage-spec/specs-go/v1\",\"goroutine\":51,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[1;119H07:53:02.29907803Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":51,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistr"]
|
||||
[10.315973, "o", "y.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:02.299111583Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"name\":\"time::Time\",\"goroutine\":51,\"caller\r\n\u001b[K\u001b[6;119"]
|
||||
[10.316166, "o", "Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:02.299181184Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside permitted packages\"}\r\n\u001b[K\u001b[10B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:"]
|
||||
[10.316195, "o", "53:02.299319655Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":51,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:02\r\n\u001b[K\u001b[3;119H2.299354019Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.oci.image.layer.v1.tar+gzip of blob\r\n\u001b[K\u001b[4;119Hb sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"gor"]
|
||||
[10.316398, "o", "outine\":51,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:02.299382723Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[10B\u001b[H\u001b[Ke\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":51,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:02\r\n\u001b[K\u001b[2;119H2.299476219Z\",\"message\":\"garbage collected 0 blobs\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34770\",\"method\":\"PUT\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[4;119Hat"]
|
||||
[10.316475, "o", "usCode\":201,\"latency\":\"1.151546ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-\r\n\u001b[K\u001b[5;119H-Length\":[\"347\"],\"Content-Type\":[\"application/vnd.oci.image.manifest.v1+json\"],\"Docker-Distribution-Api-Version\":[\"regis\r\n\u001b[K\u001b[6;119Hstry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":51,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[7;119Hme\":\"2022-04-11T07:53:02.299504703Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[10BStoring signatures\r\n \b"]
|
||||
[10.319102, "o", "$ \r$\b\n \b$ "]
|
||||
[14.004466, "i", "cosign generate-key-pair"]
|
||||
[14.005184, "o", "cosign generate-key-pair"]
|
||||
|
@ -80,11 +80,11 @@
|
|||
[22.3469, "o", "cosign verify --key cosign.pub localhost:5000/busybox:latest"]
|
||||
[22.779921, "i", "\r"]
|
||||
[22.780692, "o", "\r$\b\n \b"]
|
||||
[22.840979, "o", "\u001b[H\u001b[KtusCode\":201,\"latency\":\"1.151546ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-\r\n\u001b[K\u001b[1;119H-Length\":[\"347\"],\"Content-Type\":[\"application/vnd.oci.image.manifest.v1+json\"],\"Docker-Distribution-Api-Version\":[\"regis\r\n\u001b[K\u001b[2;119Hstry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":51,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[3;119Hme\":\"2022-04-11T07:53:02.299504703Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34774\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"39.203µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerre\r\n\u001b[K\u001b[6;119Hegistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":54,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[7;119Hme\":\"2022-04-11T07:53:14.82411121Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[19B"]
|
||||
[22.841636, "o", "\u001b[H\u001b[Ke\":\"2022-04-11T07:53:14.82411121Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34774\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[2;119HatusCode\":200,\"latency\":\"222.038µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.v1\r\n\u001b[K\u001b[3;119H1+json,application/vnd.docker.distribution.manifest.v1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,ap\r\n\u001b[K\u001b[4;119Hpplication/vnd.oci.image.manifest.v1+json,application/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.\r\n\u001b[K\u001b[5;119H.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.\r\n\u001b[K\u001b[6;119H.1-0.20220209165246-a44adc326839\"]},\"goroutine\":54,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-\r\n\u001b[K\u001b[7;119H-11T07:53:14.824932815Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[19B"]
|
||||
[22.843144, "o", "\u001b[H\u001b[Kplication/vnd.oci.image.manifest.v1+json,application/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.\r\n\u001b[K\u001b[1;119H.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.\r\n\u001b[K\u001b[2;119H.1-0.20220209165246-a44adc326839\"]},\"goroutine\":54,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-\r\n\u001b[K\u001b[3;119H-11T07:53:14.824932815Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34"]
|
||||
[22.84324, "o", "774\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"6.432µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerreg\r\n\u001b[K\u001b[6;119Hgistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":54,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\r\n\u001b[K\u001b[7;119He\":\"2022-04-11T07:53:14.826410906Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[19B"]
|
||||
[22.843536, "o", "\u001b[H\u001b[K\":\"2022-04-11T07:53:14.826410906Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34774\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/sha256-d11ab\r\n\u001b[K\u001b[2;119Hbb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182.sig\",\"statusCode\":404,\"latency\":\"106.38µs\",\"bodySize\":294,\"\r\n\u001b[K\u001b[3;119H\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.v1+json,application/vnd.docker.distribution.manifest.\r\n\u001b[K\u001b[4;119H.v1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,application/vnd.oci.image.manifest.v1+json,applicatio\r\n\u001b[K\u001b[5;119Hon/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"U\r\n\u001b[K\u001b[6;119HUser-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":54,\"\r\n\u001b[K\u001b[7;119H\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:14.826914864Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[19B"]
|
||||
[22.840979, "o", "\u001b[H\u001b[KtusCode\":201,\"latency\":\"1.151546ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-\r\n\u001b[K\u001b[1;119H-Length\":[\"347\"],\"Content-Type\":[\"application/vnd.oci.image.manifest.v1+json\"],\"Docker-Distribution-Api-Version\":[\"regis\r\n\u001b[K\u001b[2;119Hstry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":51,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[3;119Hme\":\"2022-04-11T07:53:02.299504703Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34774\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"39.203µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerre\r\n\u001b[K\u001b[6;119Hegistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":54,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[7;119Hme\":\"2022-04-11T07:53:14.82411121Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[19B"]
|
||||
[22.841636, "o", "\u001b[H\u001b[Ke\":\"2022-04-11T07:53:14.82411121Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34774\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[2;119HatusCode\":200,\"latency\":\"222.038µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.v1\r\n\u001b[K\u001b[3;119H1+json,application/vnd.docker.distribution.manifest.v1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,ap\r\n\u001b[K\u001b[4;119Hpplication/vnd.oci.image.manifest.v1+json,application/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.\r\n\u001b[K\u001b[5;119H.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.\r\n\u001b[K\u001b[6;119H.1-0.20220209165246-a44adc326839\"]},\"goroutine\":54,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-\r\n\u001b[K\u001b[7;119H-11T07:53:14.824932815Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[19B"]
|
||||
[22.843144, "o", "\u001b[H\u001b[Kplication/vnd.oci.image.manifest.v1+json,application/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.\r\n\u001b[K\u001b[1;119H.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.\r\n\u001b[K\u001b[2;119H.1-0.20220209165246-a44adc326839\"]},\"goroutine\":54,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-\r\n\u001b[K\u001b[3;119H-11T07:53:14.824932815Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34"]
|
||||
[22.84324, "o", "774\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"6.432µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerreg\r\n\u001b[K\u001b[6;119Hgistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":54,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\r\n\u001b[K\u001b[7;119He\":\"2022-04-11T07:53:14.826410906Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[19B"]
|
||||
[22.843536, "o", "\u001b[H\u001b[K\":\"2022-04-11T07:53:14.826410906Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34774\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/sha256-d11ab\r\n\u001b[K\u001b[2;119Hbb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182.sig\",\"statusCode\":404,\"latency\":\"106.38µs\",\"bodySize\":294,\"\r\n\u001b[K\u001b[3;119H\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.v1+json,application/vnd.docker.distribution.manifest.\r\n\u001b[K\u001b[4;119H.v1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,application/vnd.oci.image.manifest.v1+json,applicatio\r\n\u001b[K\u001b[5;119Hon/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"U\r\n\u001b[K\u001b[6;119HUser-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":54,\"\r\n\u001b[K\u001b[7;119H\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:14.826914864Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[19B"]
|
||||
[22.84383, "o", "Error: no matching signatures:\r\n \b\n \b"]
|
||||
[22.843897, "o", "main.go:46: error during command execution: no matching signatures:\r\n \b"]
|
||||
[22.84844, "o", "$ "]
|
||||
|
@ -98,67 +98,67 @@
|
|||
[28.599693, "o", "Enter password for private key: "]
|
||||
[29.431896, "i", "\r"]
|
||||
[29.432539, "o", "\rE\b\n \b"]
|
||||
[29.56025, "o", "\u001b[H\u001b[Kv1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,application/vnd.oci.image.manifest.v1+json,applicatio\r\n\u001b[K\u001b[1;119Hon/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"U\r\n\u001b[K\u001b[2;119HUser-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":54,\"\r\n\u001b[K\u001b[3;119H\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:14.826914864Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"29.075µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerre\r\n\u001b[K\u001b[6;119Hegistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[7;119Hme\":\"2022-04-11T07:53:21.543440645Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[25B"]
|
||||
[29.561244, "o", "\u001b[H\u001b[Ke\":\"2022-04-11T07:53:21.543440645Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[2;119HatusCode\":200,\"latency\":\"126.839µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.v1\r\n\u001b[K\u001b[3;119H1+json,application/vnd.docker.distribution.manifest.v1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,ap\r\n\u001b[K\u001b[4;119Hpplication/vnd.oci.image.manifest.v1+json,application/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.\r\n\u001b[K\u001b[5;119H.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.\r\n\u001b[K\u001b[6;119H.1-0.20220209165246-a44adc326839\"]},\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-\r\n\u001b[K\u001b[7;119H-11T07:53:21.544303959Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[25BPushing signature to: localhost:5000/busybox\r\n \b"]
|
||||
[29.562792, "o", "\u001b[H\u001b[Kplication/vnd.oci.image.manifest.v1+json,application/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.\r\n\u001b[K\u001b[1;119H.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.\r\n\u001b[K\u001b[2;119H.1-0.20220209165246-a44adc326839\"]},\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-\r\n\u001b[K\u001b[3;119H-11T07:53:21.544303959Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"5.62µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregi\r\n\u001b[K\u001b[6;119Histry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\"\r\n\u001b[K\u001b[7;119H\":\"2022-04-11T07:53:21.545961377Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.563325, "o", "\u001b[H\u001b[K:\"2022-04-11T07:53:21.545961377Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/sha256-d11ab\r\n\u001b[K\u001b[2;119Hbb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182.sig\",\"statusCode\":404,\"latency\":\"72.907µs\",\"bodySize\":294,\"\r\n\u001b[K\u001b[3;119H\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.v1+json,application/vnd.docker.distribution.manifest.\r\n\u001b[K\u001b[4;119H.v1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,application/vnd.oci.image.manifest.v1+json,applicatio\r\n\u001b[K\u001b[5;119Hon/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"U\r\n\u001b[K\u001b[6;119HUser-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":57,\"\r\n\u001b[K\u001b[7;119H\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.546566045Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.56583, "o", "\u001b[H\u001b[Kv1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,application/vnd.oci.image.manifest.v1+json,applicatio\r\n\u001b[K\u001b[1;119Hon/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"U\r\n\u001b[K\u001b[2;119HUser-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":57,\"\r\n\u001b[K\u001b[3;119H\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.546566045Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"5.049µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerreg\r\n\u001b[K\u001b[6;119Hgistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\r\n\u001b[K\u001b[7;119He\":\"2022-04-11T07:53:21.549112596Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.56025, "o", "\u001b[H\u001b[Kv1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,application/vnd.oci.image.manifest.v1+json,applicatio\r\n\u001b[K\u001b[1;119Hon/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"U\r\n\u001b[K\u001b[2;119HUser-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":54,\"\r\n\u001b[K\u001b[3;119H\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:14.826914864Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"29.075µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerre\r\n\u001b[K\u001b[6;119Hegistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[7;119Hme\":\"2022-04-11T07:53:21.543440645Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[25B"]
|
||||
[29.561244, "o", "\u001b[H\u001b[Ke\":\"2022-04-11T07:53:21.543440645Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[2;119HatusCode\":200,\"latency\":\"126.839µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.v1\r\n\u001b[K\u001b[3;119H1+json,application/vnd.docker.distribution.manifest.v1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,ap\r\n\u001b[K\u001b[4;119Hpplication/vnd.oci.image.manifest.v1+json,application/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.\r\n\u001b[K\u001b[5;119H.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.\r\n\u001b[K\u001b[6;119H.1-0.20220209165246-a44adc326839\"]},\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-\r\n\u001b[K\u001b[7;119H-11T07:53:21.544303959Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[25BPushing signature to: localhost:5000/busybox\r\n \b"]
|
||||
[29.562792, "o", "\u001b[H\u001b[Kplication/vnd.oci.image.manifest.v1+json,application/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.\r\n\u001b[K\u001b[1;119H.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.\r\n\u001b[K\u001b[2;119H.1-0.20220209165246-a44adc326839\"]},\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-\r\n\u001b[K\u001b[3;119H-11T07:53:21.544303959Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"5.62µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregi\r\n\u001b[K\u001b[6;119Histry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\"\r\n\u001b[K\u001b[7;119H\":\"2022-04-11T07:53:21.545961377Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.563325, "o", "\u001b[H\u001b[K:\"2022-04-11T07:53:21.545961377Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/sha256-d11ab\r\n\u001b[K\u001b[2;119Hbb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182.sig\",\"statusCode\":404,\"latency\":\"72.907µs\",\"bodySize\":294,\"\r\n\u001b[K\u001b[3;119H\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.v1+json,application/vnd.docker.distribution.manifest.\r\n\u001b[K\u001b[4;119H.v1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,application/vnd.oci.image.manifest.v1+json,applicatio\r\n\u001b[K\u001b[5;119Hon/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"U\r\n\u001b[K\u001b[6;119HUser-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":57,\"\r\n\u001b[K\u001b[7;119H\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.546566045Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.56583, "o", "\u001b[H\u001b[Kv1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,application/vnd.oci.image.manifest.v1+json,applicatio\r\n\u001b[K\u001b[1;119Hon/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"U\r\n\u001b[K\u001b[2;119HUser-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":57,\"\r\n\u001b[K\u001b[3;119H\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.546566045Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"5.049µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerreg\r\n\u001b[K\u001b[6;119Hgistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\r\n\u001b[K\u001b[7;119He\":\"2022-04-11T07:53:21.549112596Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.567548, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/busybox/blobs/sha256/a56e054a9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a6\r\n\u001b[K\u001b[1;119H658c64a13ad5ae72: no such file or directory\",\"blob\":\"/var/lib/registry/busybox/blobs/sha256/a56e054a9f5c5db6ce3be0b0dd"]
|
||||
[29.56768, "o", "d1\r\n\u001b[K\u001b[2;119H1da2dff77b3396445c12a658c64a13ad5ae72\",\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"time\r\n\u001b[K\u001b[3;119He\":\"2022-04-11T07:53:21.550682299Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"message\":\"failed to st\r\n\u001b[K\u001b[4;119Htat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:a56e054a9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae7\r\n\u001b[K\u001b[6;119H72\",\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"tim"]
|
||||
[29.568183, "o", "e\":\"2022-04-11T07:53:21.550712155Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:a56e054a9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae7\r\n\u001b[K\u001b[2;119H72\",\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:53:21.550712155Z\",\r\n\u001b[K\u001b[3;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cach"]
|
||||
[29.568228, "o", "e: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:a56e054a\r\n\u001b[K\u001b[5;119Ha9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae72\",\"statusCode\":404,\"latency\":\"112.392µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[6;119Hrs\":{\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\r\n\u001b[K\u001b[7;119He\":57,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.5507543"]
|
||||
[29.568539, "o", "74Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd\r\n\u001b[K\u001b[2;119Hd2\",\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:53:21.551368089Z\",\r\n\u001b[K\u001b[3;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"HEAD\",\"path\":\"/v2/busyb"]
|
||||
[29.568638, "o", "ox/blobs/sha256:e31220af\r\n\u001b[K\u001b[5;119Hf41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"statusCode\":404,\"latency\":\"212.029µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[6;119Hrs\":{\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\r\n\u001b[K\u001b[7;119He\":57,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.551500288Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.569086, "o", "\u001b[H\u001b[K41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"statusCode\":404,\"latency\":\"212.029µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[1;119Hrs\":{\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\r\n\u001b[K\u001b[2;119He\":57,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.551500288Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34786\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[4;119HtusCode\":202,\"latency\":\"165.091µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"0\"],\"Content-Ty\r\n\u001b[K\u001b[5;119Hype\":[\"application/json\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44ad\r\n\u001b[K\u001b[6;119Hdc326839\"]},\"goroutine\":82,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.552216174Z\",\r\n\u001b[K\u001b[7;119H,\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.569249, "o", "\u001b[H\u001b[Kpe\":[\"application/json\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44ad\r\n\u001b[K\u001b[1;119Hdc326839\"]},\"goroutine\":82,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.552216174Z\",\r\n\u001b[K\u001b[2;119H,\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[4;119HtusCode\":202,\"latency\":\"66.044µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"0\"],\"Content-Typ\r\n\u001b[K\u001b[5;119Hpe\":[\"application/json\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc\r\n\u001b[K\u001b[6;119Hc326839\"]},\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.552667654Z\",\"\r\n\u001b[K\u001b[7;119H\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.56996, "o", "\u001b[H\u001b[K],\"Content-Type\":[\"application/octet-stream\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0\r\n\u001b[K\u001b[1;119H0.20220209165246-a44adc326839\"]},\"goroutine\":82,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T\r\n\u001b[K\u001b[2;119HT07:53:21.552938212Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/cac8b7\r\n\u001b[K\u001b[4;119H7fc-e962-4741-9bb3-7ecfc04b8b4a\",\"statusCode\":202,\"latency\":\""]
|
||||
[29.56768, "o", "d1\r\n\u001b[K\u001b[2;119H1da2dff77b3396445c12a658c64a13ad5ae72\",\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"time\r\n\u001b[K\u001b[3;119He\":\"2022-04-11T07:53:21.550682299Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"message\":\"failed to st\r\n\u001b[K\u001b[4;119Htat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:a56e054a9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae7\r\n\u001b[K\u001b[6;119H72\",\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"tim"]
|
||||
[29.568183, "o", "e\":\"2022-04-11T07:53:21.550712155Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:a56e054a9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae7\r\n\u001b[K\u001b[2;119H72\",\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:53:21.550712155Z\",\r\n\u001b[K\u001b[3;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cach"]
|
||||
[29.568228, "o", "e: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:a56e054a\r\n\u001b[K\u001b[5;119Ha9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae72\",\"statusCode\":404,\"latency\":\"112.392µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[6;119Hrs\":{\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\r\n\u001b[K\u001b[7;119He\":57,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.5507543"]
|
||||
[29.568539, "o", "74Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd\r\n\u001b[K\u001b[2;119Hd2\",\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:53:21.551368089Z\",\r\n\u001b[K\u001b[3;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"HEAD\",\"path\":\"/v2/busyb"]
|
||||
[29.568638, "o", "ox/blobs/sha256:e31220af\r\n\u001b[K\u001b[5;119Hf41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"statusCode\":404,\"latency\":\"212.029µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[6;119Hrs\":{\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\r\n\u001b[K\u001b[7;119He\":57,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.551500288Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.569086, "o", "\u001b[H\u001b[K41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"statusCode\":404,\"latency\":\"212.029µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[1;119Hrs\":{\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\r\n\u001b[K\u001b[2;119He\":57,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.551500288Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34786\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[4;119HtusCode\":202,\"latency\":\"165.091µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"0\"],\"Content-Ty\r\n\u001b[K\u001b[5;119Hype\":[\"application/json\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44ad\r\n\u001b[K\u001b[6;119Hdc326839\"]},\"goroutine\":82,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.552216174Z\",\r\n\u001b[K\u001b[7;119H,\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.569249, "o", "\u001b[H\u001b[Kpe\":[\"application/json\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44ad\r\n\u001b[K\u001b[1;119Hdc326839\"]},\"goroutine\":82,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.552216174Z\",\r\n\u001b[K\u001b[2;119H,\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[4;119HtusCode\":202,\"latency\":\"66.044µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"0\"],\"Content-Typ\r\n\u001b[K\u001b[5;119Hpe\":[\"application/json\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc\r\n\u001b[K\u001b[6;119Hc326839\"]},\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.552667654Z\",\"\r\n\u001b[K\u001b[7;119H\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.56996, "o", "\u001b[H\u001b[K],\"Content-Type\":[\"application/octet-stream\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0\r\n\u001b[K\u001b[1;119H0.20220209165246-a44adc326839\"]},\"goroutine\":82,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T\r\n\u001b[K\u001b[2;119HT07:53:21.552938212Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/cac8b7\r\n\u001b[K\u001b[4;119H7fc-e962-4741-9bb3-7ecfc04b8b4a\",\"statusCode\":202,\"latency\":\""]
|
||||
[29.570009, "o", "90.511µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"\r\n\u001b[K\u001b[5;119H\"],\"Content-Type\":[\"application/octet-stream\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0\r\n\u001b[K\u001b[6;119H0.20220209165246-a44adc326839\"]},\"goroutine\":57,\"c"]
|
||||
[29.570044, "o", "aller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T\r\n\u001b[K\u001b[7;119HT07:53:21.553215374Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[K07:53:21.552938212Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"meth"]
|
||||
[29.570044, "o", "aller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T\r\n\u001b[K\u001b[7;119HT07:53:21.553215374Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[K07:53:21.552938212Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"meth"]
|
||||
[29.570052, "o", "od\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/cac8b7\r\n\u001b[K\u001b[2;119H7fc-e962-4741-9bb3-7ecfc04b8b4a\",\"statusCode\":202,\"latency\":\"90.511µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"\r\n\u001b[K\u001b[3;119H\"],\"Content-Type\":[\"application/octet-stream\"],\"User-Agen"]
|
||||
[29.570058, "o", "t\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0\r\n\u001b[K\u001b[4;119H0.20220209165246-a44adc326839\"]},\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T\r\n\u001b[K\u001b[5;119HT07:53:21.553215374Z\",\"message\":\"HTTP API\"}\r\n\u001b["]
|
||||
[29.570189, "o", "K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":82,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T07:53:21.553367049Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[K-11T07:53:21.553367049Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug"]
|
||||
[29.570224, "o", "\",\"src\":\"/var/lib/registry/busybox/.uploads/7aead363-06cf-4d7e-95ca-298f10f39d8a\",\"dstDigest\":\"sha256:a5\r\n\u001b[K\u001b[2;119H56e054a9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae72\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/a56e054a9\r\n\u001b[K\u001b[3;119H9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae72\",\"goroutine\":82,\"caller\":\"zotregistry.io/zot/pkg/storage/storag\r\n\u001b[K\u001b[4;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:53:21.553480653Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[5;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T07:53:21.553490221Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.571258, "o", "\u001b[H\u001b[Ke_fs.go:1146\",\"time\":\"2022-04-11T07:53:21.553480653Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[1;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/api/ro"]
|
||||
[29.571278, "o", "utes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[3;119H4-11T07:53:21.553490221Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/7aead363-06cf-4d7e-95ca-298f10f39d8a\",\"dst\":\"/var/lib/regist\r\n\u001b[K\u001b[5;119Htry/busybox/blobs/sha256/a56e054a9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae72\",\"goroutine\":82,\"caller\":\"zotr\r\n\u001b[K\u001b[6;119Hregistry.io/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:53:21.554536359Z\",\"caller\":\"zotregistry.io/zot/pkg\r\n\u001b[K\u001b[7;119Hg/storage/storage_fs.go"]
|
||||
[29.571491, "o", ":1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[K\":[\"application/octet-stream\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246\r\n\u001b[K\u001b[1;119H6-a44adc326839\"]},\"goroutine\":82,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.554604\r\n\u001b[K\u001b[2;119H4768Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/cac8b7fc-e962-4741-9bb3-7ecfc04b8b4a\",\"dstDigest\":\"sha256:e3\r\n\u001b[K\u001b[4;119H31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/e31220af4\r\n\u001b[K\u001b[5;119H41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/storage/storag\r\n\u001b[K\u001b[6;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:53:21.554681021Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[7;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.572295, "o", "\u001b[H\u001b[K1220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/e31220af4\r\n\u001b[K\u001b[1;119H41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/storage/storag\r\n\u001b[K\u001b[2;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:53:21.554681021Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[3;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/cac8b7fc-e962-4741-9bb3-7ecfc04b8b4a\",\"dst\":\"/var/lib/regist\r\n\u001b[K\u001b[5;119Htry/busybox/blobs/sha256/e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"goroutine\":57,\"caller\":\"zotr\r\n\u001b[K\u001b[6;119Hregistry.io/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:5"]
|
||||
[29.57243, "o", "3:21.555648381Z\",\"caller\":\"zotregistry.io/zot/pkg\r\n\u001b[K\u001b[7;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kegistry.io/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:53:21.555648381Z\",\"caller\":\"zotregistry.io/zot/pkg\r\n\u001b[K\u001b[1;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"PUT\",\"path\":\"/v2/busybox/blobs/uploads/cac8b7fc\r\n\u001b[K\u001b[3;119Hc-e962-4741-9bb3-7ecfc04b8b4a?digest=sha256%3Ae3122"]
|
||||
[29.572468, "o", "0af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"statusC\r\n\u001b[K\u001b[4;119HCode\":201,\"latency\":\"2.20057ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"0\"],\"Content-Type\"\r\n\u001b[K\u001b[5;119H\":[\"application/octet-stream\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-\r\n\u001b[K\u001b[6;119H-a44adc326839\"]},\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.5556851\r\n\u001b[K\u001b[7;119H14Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.573391, "o", "\u001b[H\u001b[Kode\":201,\"latency\":\"2.20057ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"0\"],\"Content-Type\"\r\n\u001b[K\u001b[1;119H\":[\"application/octet-stream\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-\r\n\u001b[K\u001b[2;119H-a44adc326839\"]},\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.5556851\r\n\u001b[K\u001b[3;119H14Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"blobPath\":\"/var/lib/registry/busybox/blobs/sha256/e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c222\r\n\u001b[K\u001b[5;119H284641b4d5fd2\",\"reference\":\"sha256-d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182.sig\",\"goroutine\":82,\r\n\u001b[K\u001b[6;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:516\",\"time\":\"2022-04-11T07:53:21.556726239Z\",\"caller\":\"zotregist\r\n\u001b[K\u001b[7;119Htry.io/zot/pkg/storage/storage_fs.go:516\",\"message\":\"manifest layers\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.573662, "o", "\u001b[H\u001b[K4Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"blobPath\":\"/var/lib/registry/busybox/blobs/sha256/e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c222\r\n\u001b[K\u001b[2;119H284641b4d5fd2\",\"reference\":\"sha256-d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182.sig\",\"goroutine\":82,\r\n\u001b[K\u001b[3;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:516\",\"time\":\"2022-04-11T07:53:21.556726239Z\",\"caller\":\"zotregist\r\n\u001b[K\u001b[4;119Htry.io/zot/pkg/storage/storage_fs.go:516\",\"message\":\"manifest layers\"}\r\n\u001b[K{\"l"]
|
||||
[29.573704, "o", "evel\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557051441Z\",\"message\":\"GC: got refe\r\n\u001b[K\u001b["]
|
||||
[29.573776, "o", "7;119Herence\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557051441Z\",\"message\":\"GC: got refe\r\n\u001b[K\u001b[1;119Herence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:05f65cfd444a4ba3b0557f6fef7f59175ee355990a5db03d79bfa038e6e87aed\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557112746Z\",\"message\":\"GC: got refe\r\n\u001b[K\u001b[4;119Herence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2f"]
|
||||
[29.573862, "o", "e3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557167619Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[7;119H from root\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kler\":\"zotregistry.io/z"]
|
||||
[29.573895, "o", "ot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557112746Z\",\"message\":\"GC: got refe\r\n\u001b[K\u001b[1;119Herence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557167619Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[4;119H from root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"gorout"]
|
||||
[29.573976, "o", "ine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557229406Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:"]
|
||||
[29.574001, "o", "53:21.557167619Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[1;119H from root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557229406Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"github.com/opencontainers/image-spec/specs-go::Versioned\",\"v1path\":\"github.com/opencontainers/\r\n\u001b[K\u001b[6;119H/image-spec/specs-go/v1\",\"goroutine"]
|
||||
[29.574079, "o", "\":82,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[7;119H07:53:21.557372134Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557229406Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"github.com/opencontainers/image-spec/specs-go::Versioned\",\"v1path\":\"github.com/opencontainers/\r\n\u001b[K\u001b[3;119H/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[4;119H07:53:21.557372134Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fd"]
|
||||
[29.57412, "o", "c8b\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557445612Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.574223, "o", "\u001b[H\u001b[Kimage-spec/specs-go/v1\",\"goroutine\":82,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[1;119H07:53:21.557372134Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557445612Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557604501Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside perm"]
|
||||
[29.574311, "o", "itted packages\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557445612Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec"]
|
||||
[29.574346, "o", "/specs-go/v1\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557604501Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557688459Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside permitted packages\"}\r\n\u001b["]
|
||||
[29.574413, "o", "K\u001b[26B\u001b[H\u001b[K\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557604501Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[1;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557688459Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"v1path\":\"github.com"]
|
||||
[29.574439, "o", "/opencontainers/image-spec/specs-go/v1\",\"name\":\"time::Time\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557793006Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside permitted packages\"}"]
|
||||
[29.57451, "o", "\r\n\u001b[K\u001b[26B\u001b[H\u001b[K\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557688459Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[1;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"name\":\"time::Time\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557793006Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256"]
|
||||
[29.574624, "o", ":02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.55786428Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[7;119He\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.55786428Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[1;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":82,\"cal\r\n"]
|
||||
[29.574683, "o", "\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557926748Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":82,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"202"]
|
||||
[29.570058, "o", "t\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0\r\n\u001b[K\u001b[4;119H0.20220209165246-a44adc326839\"]},\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T\r\n\u001b[K\u001b[5;119HT07:53:21.553215374Z\",\"message\":\"HTTP API\"}\r\n\u001b["]
|
||||
[29.570189, "o", "K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":82,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T07:53:21.553367049Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[K-11T07:53:21.553367049Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug"]
|
||||
[29.570224, "o", "\",\"src\":\"/var/lib/registry/busybox/.uploads/7aead363-06cf-4d7e-95ca-298f10f39d8a\",\"dstDigest\":\"sha256:a5\r\n\u001b[K\u001b[2;119H56e054a9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae72\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/a56e054a9\r\n\u001b[K\u001b[3;119H9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae72\",\"goroutine\":82,\"caller\":\"zotregistry.dev/zot/pkg/storage/storag\r\n\u001b[K\u001b[4;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:53:21.553480653Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[5;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T07:53:21.553490221Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.571258, "o", "\u001b[H\u001b[Ke_fs.go:1146\",\"time\":\"2022-04-11T07:53:21.553480653Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[1;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/api/ro"]
|
||||
[29.571278, "o", "utes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[3;119H4-11T07:53:21.553490221Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/7aead363-06cf-4d7e-95ca-298f10f39d8a\",\"dst\":\"/var/lib/regist\r\n\u001b[K\u001b[5;119Htry/busybox/blobs/sha256/a56e054a9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae72\",\"goroutine\":82,\"caller\":\"zotr\r\n\u001b[K\u001b[6;119Hregistry.dev/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:53:21.554536359Z\",\"caller\":\"zotregistry.dev/zot/pkg\r\n\u001b[K\u001b[7;119Hg/storage/storage_fs.go"]
|
||||
[29.571491, "o", ":1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[K\":[\"application/octet-stream\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246\r\n\u001b[K\u001b[1;119H6-a44adc326839\"]},\"goroutine\":82,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.554604\r\n\u001b[K\u001b[2;119H4768Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/cac8b7fc-e962-4741-9bb3-7ecfc04b8b4a\",\"dstDigest\":\"sha256:e3\r\n\u001b[K\u001b[4;119H31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/e31220af4\r\n\u001b[K\u001b[5;119H41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/storage/storag\r\n\u001b[K\u001b[6;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:53:21.554681021Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[7;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.572295, "o", "\u001b[H\u001b[K1220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/e31220af4\r\n\u001b[K\u001b[1;119H41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/storage/storag\r\n\u001b[K\u001b[2;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:53:21.554681021Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[3;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/cac8b7fc-e962-4741-9bb3-7ecfc04b8b4a\",\"dst\":\"/var/lib/regist\r\n\u001b[K\u001b[5;119Htry/busybox/blobs/sha256/e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"goroutine\":57,\"caller\":\"zotr\r\n\u001b[K\u001b[6;119Hregistry.dev/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:5"]
|
||||
[29.57243, "o", "3:21.555648381Z\",\"caller\":\"zotregistry.dev/zot/pkg\r\n\u001b[K\u001b[7;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kegistry.dev/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:53:21.555648381Z\",\"caller\":\"zotregistry.dev/zot/pkg\r\n\u001b[K\u001b[1;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34780\",\"method\":\"PUT\",\"path\":\"/v2/busybox/blobs/uploads/cac8b7fc\r\n\u001b[K\u001b[3;119Hc-e962-4741-9bb3-7ecfc04b8b4a?digest=sha256%3Ae3122"]
|
||||
[29.572468, "o", "0af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"statusC\r\n\u001b[K\u001b[4;119HCode\":201,\"latency\":\"2.20057ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"0\"],\"Content-Type\"\r\n\u001b[K\u001b[5;119H\":[\"application/octet-stream\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-\r\n\u001b[K\u001b[6;119H-a44adc326839\"]},\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.5556851\r\n\u001b[K\u001b[7;119H14Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.573391, "o", "\u001b[H\u001b[Kode\":201,\"latency\":\"2.20057ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"0\"],\"Content-Type\"\r\n\u001b[K\u001b[1;119H\":[\"application/octet-stream\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-\r\n\u001b[K\u001b[2;119H-a44adc326839\"]},\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.5556851\r\n\u001b[K\u001b[3;119H14Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"blobPath\":\"/var/lib/registry/busybox/blobs/sha256/e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c222\r\n\u001b[K\u001b[5;119H284641b4d5fd2\",\"reference\":\"sha256-d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182.sig\",\"goroutine\":82,\r\n\u001b[K\u001b[6;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:516\",\"time\":\"2022-04-11T07:53:21.556726239Z\",\"caller\":\"zotregist\r\n\u001b[K\u001b[7;119Htry.dev/zot/pkg/storage/storage_fs.go:516\",\"message\":\"manifest layers\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.573662, "o", "\u001b[H\u001b[K4Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"blobPath\":\"/var/lib/registry/busybox/blobs/sha256/e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c222\r\n\u001b[K\u001b[2;119H284641b4d5fd2\",\"reference\":\"sha256-d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182.sig\",\"goroutine\":82,\r\n\u001b[K\u001b[3;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:516\",\"time\":\"2022-04-11T07:53:21.556726239Z\",\"caller\":\"zotregist\r\n\u001b[K\u001b[4;119Htry.dev/zot/pkg/storage/storage_fs.go:516\",\"message\":\"manifest layers\"}\r\n\u001b[K{\"l"]
|
||||
[29.573704, "o", "evel\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557051441Z\",\"message\":\"GC: got refe\r\n\u001b[K\u001b["]
|
||||
[29.573776, "o", "7;119Herence\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557051441Z\",\"message\":\"GC: got refe\r\n\u001b[K\u001b[1;119Herence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:05f65cfd444a4ba3b0557f6fef7f59175ee355990a5db03d79bfa038e6e87aed\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557112746Z\",\"message\":\"GC: got refe\r\n\u001b[K\u001b[4;119Herence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2f"]
|
||||
[29.573862, "o", "e3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557167619Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[7;119H from root\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kler\":\"zotregistry.dev/z"]
|
||||
[29.573895, "o", "ot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557112746Z\",\"message\":\"GC: got refe\r\n\u001b[K\u001b[1;119Herence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557167619Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[4;119H from root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"gorout"]
|
||||
[29.573976, "o", "ine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557229406Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:"]
|
||||
[29.574001, "o", "53:21.557167619Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[1;119H from root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557229406Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"github.com/opencontainers/image-spec/specs-go::Versioned\",\"v1path\":\"github.com/opencontainers/\r\n\u001b[K\u001b[6;119H/image-spec/specs-go/v1\",\"goroutine"]
|
||||
[29.574079, "o", "\":82,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[7;119H07:53:21.557372134Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557229406Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"github.com/opencontainers/image-spec/specs-go::Versioned\",\"v1path\":\"github.com/opencontainers/\r\n\u001b[K\u001b[3;119H/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[4;119H07:53:21.557372134Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fd"]
|
||||
[29.57412, "o", "c8b\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557445612Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.574223, "o", "\u001b[H\u001b[Kimage-spec/specs-go/v1\",\"goroutine\":82,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[1;119H07:53:21.557372134Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557445612Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557604501Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside perm"]
|
||||
[29.574311, "o", "itted packages\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557445612Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec"]
|
||||
[29.574346, "o", "/specs-go/v1\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557604501Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557688459Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside permitted packages\"}\r\n\u001b["]
|
||||
[29.574413, "o", "K\u001b[26B\u001b[H\u001b[K\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557604501Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[1;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557688459Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"v1path\":\"github.com"]
|
||||
[29.574439, "o", "/opencontainers/image-spec/specs-go/v1\",\"name\":\"time::Time\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557793006Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside permitted packages\"}"]
|
||||
[29.57451, "o", "\r\n\u001b[K\u001b[26B\u001b[H\u001b[K\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557688459Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[1;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"name\":\"time::Time\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557793006Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256"]
|
||||
[29.574624, "o", ":02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.55786428Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[7;119He\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.55786428Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[1;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":82,\"cal\r\n"]
|
||||
[29.574683, "o", "\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.557926748Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":82,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"202"]
|
||||
[29.574741, "o", "2-04-11T07:53:21\r\n\u001b[K\u001b[6;119H1.557996258Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.oci.image.layer.v1.tar+gzip of blob\r\n\u001b[K\u001b[7;119Hb sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[K.557996258Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.oci.image.layer.v1.tar+gzip of blob\r\n\u001b[K\u001b[1;119Hb sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb30042"]
|
||||
[29.574771, "o", "7c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558059277Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sh"]
|
||||
[29.574854, "o", "a256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558120011Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558120011Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:05f65cfd444a4ba3b0557f6fef7f59175ee355990a5db03d79bfa038e6e87aed\",\"goroutine\":82,"]
|
||||
[29.574905, "o", "\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558174323Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[4;119H from root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:05f65cfd444a4ba3b0557f6fef7f59175ee355990a5db03d79bfa038e6e87aed\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558233515Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.574946, "o", "\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558174323Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[1;119H from root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:05f65cfd444a4ba3b0557f6fef7f59175ee355990a5db03d79bfa038e6e87aed\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558233515Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"github.com/opencontainers/image-spec/specs-go::Versioned\","]
|
||||
[29.574977, "o", "\"v1path\":\"github.com/opencontainers/\r\n\u001b[K\u001b[6;119H/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[7;119H07:53:21.558375331Z\",\"message\":\"detected jump outside permitted packages\"}"]
|
||||
[29.575009, "o", "\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558233515Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"github.com/opencontainers/image-spec/specs-go::Versioned\",\"v1path\":\"github.com/opencontainers/\r\n\u001b[K\u001b[3;119H/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[4;119H07:53:21.558375331Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:a56e054a9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae72\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558448008Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.575135, "o", "\u001b[H\u001b[Kimage-spec/specs-go/v1\",\"goroutine\":82,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[1;119H07:53:21.558375331Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:a56e054a9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae72\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558448008Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.55857632Z\",\"message\":\"detected jump ou\r\n\u001b[K\u001b[7;119Hutside permitted packages\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.575209, "o", "\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558448008Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.55857632Z\",\"message\":\"detected jump ou\r\n\u001b[K\u001b[4;119Hutside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558659676Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside permitted packages\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.575272, "o", "\u001b[H\u001b[K\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.55857632Z\",\"message\":\"detected jump ou\r\n\u001b[K\u001b[1;119Hutside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558659676Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:a56e054a9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae72\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558722885Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.575331, "o", "\u001b[H\u001b[K\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558659676Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[1;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:a56e054a9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae72\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558722885Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558786665Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.575412, "o", "\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558722885Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558786665Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":82,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21\r\n\u001b[K\u001b[6;119H1.558851818Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.dev.cosign.simplesigning.v1+json of\r\n\u001b[K\u001b[7;119Hf blob sha256:e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.575462, "o", "\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558786665Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":82,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21\r\n\u001b[K\u001b[3;119H1.558851818Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.dev.cosign.simplesigning.v1+json of\r\n\u001b[K\u001b[4;119Hf blob sha256:e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558913554Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.575527, "o", "\u001b[H\u001b[K.558851818Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.dev.cosign.simplesigning.v1+json of\r\n\u001b[K\u001b[1;119Hf blob sha256:e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558913554Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:05f65cfd444a4ba3b0557f6fef7f59175ee355990a5db03d79bfa038e6e87aed\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558972264Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.575727, "o", "\u001b[H\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[1;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558913554Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[2;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:05f65cfd444a4ba3b0557f6fef7f59175ee355990a5db03d79bfa038e6e87aed\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[4;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558972264Z\",\"me"]
|
||||
[29.57585, "o", "ssage\":\"<- ws.recurs\r\n\u001b[K\u001b[5;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":82,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21\r\n\u001b[K\u001b[7;119H1.559116365Z\",\"message\":\"garbage collected 0 blobs\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[K{\"level\":\"debug\",\"goroutine\":82,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21\r\n\u001b[K\u001b[1;119H1.559116365Z\",\"message\":\"garbage collected 0 blobs\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34786\",\"method\":\"PUT\",\"pat"]
|
||||
[29.575894, "o", "h\":\"/v2/busybox/manifests/sha256-d11ab\r\n\u001b[K\u001b[3;119Hbb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182.sig\",\"statusCode\":201,\"latency\":\"2.594891ms\",\"bodySize\":0,\"\r\n\u001b[K\u001b[4;119H\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"558\"],\"Content-Type\":[\"application/vnd.oci.image.manifest.v1+js\r\n\u001b[K\u001b[5;119Hson\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutin\r\n\u001b[K\u001b[6;119Hne\":82,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.559168624Z\",\"message\":\"HTTP API\"\r\n\u001b[K\u001b[7;119H\"}\b\n\u001b[K\u001b[26B"]
|
||||
[29.574771, "o", "7c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558059277Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sh"]
|
||||
[29.574854, "o", "a256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558120011Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558120011Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:05f65cfd444a4ba3b0557f6fef7f59175ee355990a5db03d79bfa038e6e87aed\",\"goroutine\":82,"]
|
||||
[29.574905, "o", "\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558174323Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[4;119H from root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:05f65cfd444a4ba3b0557f6fef7f59175ee355990a5db03d79bfa038e6e87aed\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558233515Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.574946, "o", "\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558174323Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[1;119H from root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:05f65cfd444a4ba3b0557f6fef7f59175ee355990a5db03d79bfa038e6e87aed\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558233515Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"github.com/opencontainers/image-spec/specs-go::Versioned\","]
|
||||
[29.574977, "o", "\"v1path\":\"github.com/opencontainers/\r\n\u001b[K\u001b[6;119H/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[7;119H07:53:21.558375331Z\",\"message\":\"detected jump outside permitted packages\"}"]
|
||||
[29.575009, "o", "\r\n\u001b[K\u001b[26B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558233515Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"github.com/opencontainers/image-spec/specs-go::Versioned\",\"v1path\":\"github.com/opencontainers/\r\n\u001b[K\u001b[3;119H/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[4;119H07:53:21.558375331Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:a56e054a9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae72\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558448008Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.575135, "o", "\u001b[H\u001b[Kimage-spec/specs-go/v1\",\"goroutine\":82,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[1;119H07:53:21.558375331Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:a56e054a9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae72\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558448008Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.55857632Z\",\"message\":\"detected jump ou\r\n\u001b[K\u001b[7;119Hutside permitted packages\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.575209, "o", "\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558448008Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.55857632Z\",\"message\":\"detected jump ou\r\n\u001b[K\u001b[4;119Hutside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558659676Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside permitted packages\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.575272, "o", "\u001b[H\u001b[K\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.55857632Z\",\"message\":\"detected jump ou\r\n\u001b[K\u001b[1;119Hutside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":82,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558659676Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:a56e054a9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae72\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558722885Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.575331, "o", "\u001b[H\u001b[K\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558659676Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[1;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:a56e054a9f5c5db6ce3be0b0ddd1da2dff77b3396445c12a658c64a13ad5ae72\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558722885Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558786665Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.575412, "o", "\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558722885Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558786665Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":82,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21\r\n\u001b[K\u001b[6;119H1.558851818Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.dev.cosign.simplesigning.v1+json of\r\n\u001b[K\u001b[7;119Hf blob sha256:e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.575462, "o", "\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558786665Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":82,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21\r\n\u001b[K\u001b[3;119H1.558851818Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.dev.cosign.simplesigning.v1+json of\r\n\u001b[K\u001b[4;119Hf blob sha256:e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558913554Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.575527, "o", "\u001b[H\u001b[K.558851818Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.dev.cosign.simplesigning.v1+json of\r\n\u001b[K\u001b[1;119Hf blob sha256:e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558913554Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:05f65cfd444a4ba3b0557f6fef7f59175ee355990a5db03d79bfa038e6e87aed\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558972264Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[26B"]
|
||||
[29.575727, "o", "\u001b[H\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e31220af41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[1;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558913554Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[2;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:05f65cfd444a4ba3b0557f6fef7f59175ee355990a5db03d79bfa038e6e87aed\",\"goroutine\":82,\"cal\r\n\u001b[K\u001b[4;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21.558972264Z\",\"me"]
|
||||
[29.57585, "o", "ssage\":\"<- ws.recurs\r\n\u001b[K\u001b[5;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":82,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21\r\n\u001b[K\u001b[7;119H1.559116365Z\",\"message\":\"garbage collected 0 blobs\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[K{\"level\":\"debug\",\"goroutine\":82,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:53:21\r\n\u001b[K\u001b[1;119H1.559116365Z\",\"message\":\"garbage collected 0 blobs\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34786\",\"method\":\"PUT\",\"pat"]
|
||||
[29.575894, "o", "h\":\"/v2/busybox/manifests/sha256-d11ab\r\n\u001b[K\u001b[3;119Hbb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182.sig\",\"statusCode\":201,\"latency\":\"2.594891ms\",\"bodySize\":0,\"\r\n\u001b[K\u001b[4;119H\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"558\"],\"Content-Type\":[\"application/vnd.oci.image.manifest.v1+js\r\n\u001b[K\u001b[5;119Hson\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutin\r\n\u001b[K\u001b[6;119Hne\":82,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.559168624Z\",\"message\":\"HTTP API\"\r\n\u001b[K\u001b[7;119H\"}\b\n\u001b[K\u001b[26B"]
|
||||
[29.578214, "o", "$ "]
|
||||
[33.929666, "i", "\r"]
|
||||
[33.930522, "o", "\r$\b\n \b$ "]
|
||||
|
@ -166,16 +166,16 @@
|
|||
[34.454062, "o", "cosign verify --key cosign.pub localhost:5000/busybox:latest"]
|
||||
[35.004501, "i", "\r"]
|
||||
[35.005123, "o", "\r$\b\n \b"]
|
||||
[35.042779, "o", "\u001b[H\u001b[Kheaders\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"558\"],\"Content-Type\":[\"application/vnd.oci.image.manifest.v1+js\r\n\u001b[K\u001b[1;119Hson\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutin\r\n\u001b[K\u001b[2;119Hne\":82,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.559168624Z\",\"message\":\"HTTP API\"\r\n\u001b[K\u001b[3;119H\"}\b\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34792\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"28.524µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerre\r\n\u001b[K\u001b[6;119Hegistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":101,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"ti\r\n\u001b[K\u001b[7;119Hime\":\"2022-04-11T07:53:27.025974807Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[35.043275, "o", "\u001b[H\u001b[Kme\":\"2022-04-11T07:53:27.025974807Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34792\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[2;119HatusCode\":200,\"latency\":\"185.168µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.v1\r\n\u001b[K\u001b[3;119H1+json,application/vnd.docker.distribution.manifest.v1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,ap\r\n\u001b[K\u001b[4;119Hpplication/vnd.oci.image.manifest.v1+json,application/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.\r\n\u001b[K\u001b[5;119H.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.\r\n\u001b[K\u001b[6;119H.1-0.20220209165246-a44adc326839\"]},\"goroutine\":101,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T07:53:27.026555329Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[35.044446, "o", "\u001b[H\u001b[Kplication/vnd.oci.image.manifest.v1+json,application/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.\r\n\u001b[K\u001b[1;119H.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.\r\n\u001b[K\u001b[2;119H.1-0.20220209165246-a44adc326839\"]},\"goroutine\":101,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04\r\n\u001b[K\u001b[3;119H4-11T07:53:27.026555329Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34792\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"5.42µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregi\r\n\u001b[K\u001b[6;119Histry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":101,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\r\n\u001b[K\u001b[7;119He\":\"2022-04-11T07:53:27.027792827Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[35.044698, "o", "\u001b[H\u001b[K\":\"2022-04-11T07:53:27.027792827Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34792\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/sha256-d11ab\r\n\u001b[K\u001b[2;119Hbb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182.sig\",\"statusCode\":200,\"latency\":\"84.89µs\",\"bodySize\":558,\"h\r\n\u001b[K\u001b[3;119Hheaders\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.v1+json,application/vnd.docker.distribution.manifest.v\r\n\u001b[K\u001b[4;119Hv1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,application/vnd.oci.image.manifest.v1+json,application\r\n\u001b[K\u001b[5;119Hn/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"Us\r\n\u001b[K\u001b[6;119Hser-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":101,\"\r\n\u001b[K\u001b[7;119H\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:27.028098192Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[35.045057, "o", "\u001b[H\u001b[K/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"Us\r\n\u001b[K\u001b[1;119Hser-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":101,\"\r\n\u001b[K\u001b[2;119H\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:27.028098192Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34792\",\"method\":\"GET\",\"path\":\"/v2/busybox/blobs/sha256:e31220af4\r\n\u001b[K\u001b[4;119H41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"statusCode\":200,\"latency\":\"42.891µs\",\"bodySize\":238,\"headers\"\r\n\u001b[K\u001b[5;119H\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a\r\n\u001b[K\u001b[6;119Ha44adc326839\"]},\"goroutine\":101,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:27.0284765\r\n\u001b[K\u001b[7;119H543Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[35.045345, "o", "\u001b[H\u001b[K:{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a\r\n\u001b[K\u001b[1;119Ha44adc326839\"]},\"goroutine\":101,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:27.0284765\r\n\u001b[K\u001b[2;119H543Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34792\",\"method\":\"GET\",\"path\":\"/v2/busybox/blobs/sha256:e31220af4\r\n\u001b[K\u001b[4;119H41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"statusCode\":200,\"latency\":\"20.589µs\",\"bodySize\":238,\"headers\"\r\n\u001b[K\u001b[5;119H\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a\r\n\u001b[K\u001b[6;119Ha44adc326839\"]},\"goroutine\":101,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:27.0287718\r\n\u001b[K\u001b[7;119H849Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[35.042779, "o", "\u001b[H\u001b[Kheaders\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"558\"],\"Content-Type\":[\"application/vnd.oci.image.manifest.v1+js\r\n\u001b[K\u001b[1;119Hson\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutin\r\n\u001b[K\u001b[2;119Hne\":82,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:21.559168624Z\",\"message\":\"HTTP API\"\r\n\u001b[K\u001b[3;119H\"}\b\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34792\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"28.524µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerre\r\n\u001b[K\u001b[6;119Hegistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":101,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"ti\r\n\u001b[K\u001b[7;119Hime\":\"2022-04-11T07:53:27.025974807Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[35.043275, "o", "\u001b[H\u001b[Kme\":\"2022-04-11T07:53:27.025974807Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34792\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[2;119HatusCode\":200,\"latency\":\"185.168µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.v1\r\n\u001b[K\u001b[3;119H1+json,application/vnd.docker.distribution.manifest.v1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,ap\r\n\u001b[K\u001b[4;119Hpplication/vnd.oci.image.manifest.v1+json,application/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.\r\n\u001b[K\u001b[5;119H.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.\r\n\u001b[K\u001b[6;119H.1-0.20220209165246-a44adc326839\"]},\"goroutine\":101,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T07:53:27.026555329Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[35.044446, "o", "\u001b[H\u001b[Kplication/vnd.oci.image.manifest.v1+json,application/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.\r\n\u001b[K\u001b[1;119H.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.\r\n\u001b[K\u001b[2;119H.1-0.20220209165246-a44adc326839\"]},\"goroutine\":101,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04\r\n\u001b[K\u001b[3;119H4-11T07:53:27.026555329Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34792\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"5.42µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregi\r\n\u001b[K\u001b[6;119Histry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":101,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\r\n\u001b[K\u001b[7;119He\":\"2022-04-11T07:53:27.027792827Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[35.044698, "o", "\u001b[H\u001b[K\":\"2022-04-11T07:53:27.027792827Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34792\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/sha256-d11ab\r\n\u001b[K\u001b[2;119Hbb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182.sig\",\"statusCode\":200,\"latency\":\"84.89µs\",\"bodySize\":558,\"h\r\n\u001b[K\u001b[3;119Hheaders\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.v1+json,application/vnd.docker.distribution.manifest.v\r\n\u001b[K\u001b[4;119Hv1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,application/vnd.oci.image.manifest.v1+json,application\r\n\u001b[K\u001b[5;119Hn/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"Us\r\n\u001b[K\u001b[6;119Hser-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":101,\"\r\n\u001b[K\u001b[7;119H\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:27.028098192Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[35.045057, "o", "\u001b[H\u001b[K/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"Us\r\n\u001b[K\u001b[1;119Hser-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a44adc326839\"]},\"goroutine\":101,\"\r\n\u001b[K\u001b[2;119H\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:27.028098192Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34792\",\"method\":\"GET\",\"path\":\"/v2/busybox/blobs/sha256:e31220af4\r\n\u001b[K\u001b[4;119H41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"statusCode\":200,\"latency\":\"42.891µs\",\"bodySize\":238,\"headers\"\r\n\u001b[K\u001b[5;119H\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a\r\n\u001b[K\u001b[6;119Ha44adc326839\"]},\"goroutine\":101,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:27.0284765\r\n\u001b[K\u001b[7;119H543Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[35.045345, "o", "\u001b[H\u001b[K:{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a\r\n\u001b[K\u001b[1;119Ha44adc326839\"]},\"goroutine\":101,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:27.0284765\r\n\u001b[K\u001b[2;119H543Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34792\",\"method\":\"GET\",\"path\":\"/v2/busybox/blobs/sha256:e31220af4\r\n\u001b[K\u001b[4;119H41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"statusCode\":200,\"latency\":\"20.589µs\",\"bodySize\":238,\"headers\"\r\n\u001b[K\u001b[5;119H\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a\r\n\u001b[K\u001b[6;119Ha44adc326839\"]},\"goroutine\":101,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:27.0287718\r\n\u001b[K\u001b[7;119H849Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[35.04547, "o", "\u001b[26A\u001b[K\n\u001b[KGetting image source signatures\r\n\u001b[KCopying blob 554879bb3004 done\r\n\u001b[KCopying config 02611b034a done\r\n\u001b[KWriting manifest to image destination\r\n\u001b[KStoring signatures\r\n\u001b[K$\b\n\u001b[K$ cosign generate-key-pair\r\n\u001b[KEnter password for private key:\r\n\u001b[KEnter password for private key again:\r\n\u001b[KPrivate key written to cosign.key\r\n\u001b[KPublic key written to cosign.pub\r\n\u001b[K$\b\n\u001b[K$ cosign verify --key cosign.pub localhost:5000/busybox:latest\r\n\u001b[KError: no matching signatures:\r\n\u001b[K\n\u001b[Kmain.go:46: error during command execution: no matching signatures:\r\n\u001b[K$\b\n\u001b[K$ cosign sign --key cosign.key localhost:5000/busybox:latest\r\n\u001b[KEnter password for private key:\r\n\u001b[KPushing signature to: localhost:5000/busybox\r\n\u001b[K$\b\n\u001b[K$ cosign verify --key cosign.pub localhost:5000/b"]
|
||||
[35.045573, "o", "usybox:latest\r\n\u001b[K\n\u001b[KVerification for localhost:5000/busybox:latest --\r\n\u001b[KThe following checks were performed on each of these signatures:\r\n\u001b[K\u001b[26A\u001b[KCopying blob 554879bb3004 done\r\n\u001b[KCopying config 02611b034a done\r\n\u001b[KWriting manifest to image destination\r\n\u001b[KStoring signatures\r\n\u001b[K$\b\n\u001b[K$ cosign generate-key-pair\r\n\u001b[KEnter password for private key:\r\n\u001b[KEnter password for private key again:\r\n\u001b[KPrivate key written to cosign.key\r\n\u001b[KPublic key written to cosign.pub\r\n\u001b[K$\b\n\u001b[K$ cosign verify --key cosign.pub localhost:5000/busybox:latest\r\n\u001b[KError: no matching signatures:\r\n\u001b[K\n\u001b[Kmain.go:46: error during command execution: no matching signatures:\r\n\u001b[K$\b\n\u001b[K$ cosign sign --key cosign.key localhost:5000/busybox:latest\r\n\u001b[KEnter password for private key:\r\n\u001b[KPushing signature to: localhost:5000/busybox\r\n\u001b[K$\b\n\u001b[K$ cosign verify --key cosign.pub localhost:5000/busybox:latest\r\n\u001b[K\n\u001b[KVerification for localhost:5000/busybox:latest --\r\n\u001b[KThe following checks were performed on each of these signatures:\r\n\u001b[K - Th"]
|
||||
[35.045674, "o", "e cosign claims were validated\r\n\u001b[K - The signatures were verified against the specified public key\r\n\u001b[K"]
|
||||
[35.045748, "o", "\u001b[H\u001b[K:{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a\r\n\u001b[K\u001b[1;119Ha44adc326839\"]},\"goroutine\":101,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:27.0287718\r\n\u001b[K\u001b[2;119H849Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34792\",\"method\":\"GET\",\"path\":\"/v2/busybox/blobs/sha256:e31220af4\r\n\u001b[K\u001b[4;119H41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"statusCode\":200,\"latency\":\"19.577µs\",\"bodySize\":238,\"headers\"\r\n\u001b[K\u001b[5;119H\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a\r\n\u001b[K\u001b[6;119Ha44adc326839\"]},\"goroutine\":101,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:27.0291147\r\n\u001b[K\u001b[7;119H724Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[35.045748, "o", "\u001b[H\u001b[K:{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a\r\n\u001b[K\u001b[1;119Ha44adc326839\"]},\"goroutine\":101,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:27.0287718\r\n\u001b[K\u001b[2;119H849Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34792\",\"method\":\"GET\",\"path\":\"/v2/busybox/blobs/sha256:e31220af4\r\n\u001b[K\u001b[4;119H41ba68ddcb2986895b783d5082c1ced7d34d69d0c22284641b4d5fd2\",\"statusCode\":200,\"latency\":\"19.577µs\",\"bodySize\":238,\"headers\"\r\n\u001b[K\u001b[5;119H\":{\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"cosign/v1.6.0 (linux; amd64) go-containerregistry/v0.8.1-0.20220209165246-a\r\n\u001b[K\u001b[6;119Ha44adc326839\"]},\"goroutine\":101,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:53:27.0291147\r\n\u001b[K\u001b[7;119H724Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[35.045847, "o", "\u001b[26A\u001b[K$\b\n\u001b[K$ cosign generate-key-pair\r\n\u001b[KEnter password for private key:\r\n\u001b[KEnter password for private key again:\r\n\u001b[KPrivate key written to cosign.key\r\n\u001b[KPublic key written to cosign.pub\r\n\u001b[K$\b\n\u001b[K$ cosign verify --key cosign.pub localhost:5000/busybox:latest\r\n\u001b[KError: no matching signatures:\r\n\u001b[K\n\u001b[Kmain.go:46: error during command execution: no matching signatures:\r\n\u001b[K$\b\n\u001b[K$ cosign sign --key cosign.key localhost:5000/busybox:latest\r\n\u001b[KEnter password for private key:\r\n\u001b[KPushing signature to: l"]
|
||||
[35.045885, "o", "ocalhost:5000/busybox\r\n\u001b[K$\b\n\u001b[K$ cosign verify --key cosign.pub localhost:5000/busybox:latest\r\n\u001b[K\n\u001b[KVerification for localhost:5000/busybox:latest --\r\n\u001b[KThe following checks were performed on each of these signatures:\r\n\u001b[K - The cosign claims were validated\r\n\u001b[K - The signatures were verified against the specified public key\r\n\u001b[K\n\u001b[K[{\"critical\":{\"identity\":{\"docker-reference\":\"localhost:5000/busybox\"},\"image\":{\"docker-manifest-digest\":\"sha256:d11abb\r\n\u001b[K\u001b[34;119Hb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\"},\"type\":\"cosign container image signature\"},\"optional\":null\r\n\u001b[K\u001b[35;119Hl}]\r\n\u001b[K"]
|
||||
[35.047924, "o", "$ "]
|
||||
|
|
Before Width: | Height: | Size: 223 KiB After Width: | Height: | Size: 224 KiB |
|
@ -265,7 +265,7 @@
|
|||
[8.458937, "i", "\r"]
|
||||
[8.459588, "o", "\r\n"]
|
||||
[8.471366, "o", "go mod tidy\r\n"]
|
||||
[8.971283, "o", "env CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o bin/zot-linux-amd64 -buildmode=pie -tags extended,containers_image_openpgp -v -trimpath -ldflags \"-X zotregistry.io/zot/pkg/api/config.Commit=v1.4.0-rc3-1-ge583c2f -X zotregistry.io/zot/pkg/api/config.BinaryType=extended -X zotregistry.io/zot/pkg/api/config.GoVersion=go1.17.7 -s -w\" ./cmd/zot\r\n"]
|
||||
[8.971283, "o", "env CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o bin/zot-linux-amd64 -buildmode=pie -tags extended,containers_image_openpgp -v -trimpath -ldflags \"-X zotregistry.dev/zot/pkg/api/config.Commit=v1.4.0-rc3-1-ge583c2f -X zotregistry.dev/zot/pkg/api/config.BinaryType=extended -X zotregistry.dev/zot/pkg/api/config.GoVersion=go1.17.7 -s -w\" ./cmd/zot\r\n"]
|
||||
[11.652118, "o", "\u001b[32m$ \u001b[39m"]
|
||||
[12.657831, "i", "l"]
|
||||
[12.658095, "o", "l"]
|
||||
|
@ -375,7 +375,7 @@
|
|||
[27.208734, "o", "nimal.json "]
|
||||
[27.906725, "i", "\r"]
|
||||
[27.907479, "o", "\r\n"]
|
||||
[28.004213, "o", "{\"level\":\"info\",\"params\":{\"distSpecVersion\":\"1.0.1\",\"GoVersion\":\"go1.17.7\",\"Commit\":\"v1.4.0-rc3-1-ge583c2f\",\"BinaryType\":\"extended\",\"AccessControl\":null,\"Storage\":{\"Dedupe\":true,\"GC\":true,\"Commit\":false,\"GCDelay\":3600000000000,\"RootDirectory\":\"/tmp/zot\",\"StorageDriver\":null,\"SubPaths\":null},\"HTTP\":{\"Address\":\"127.0.0.1\",\"Port\":\"8080\",\"AllowOrigin\":\"\",\"TLS\":null,\"Auth\":null,\"RawAccessControl\":null,\"Realm\":\"\",\"AllowReadAccess\":false,\"ReadOnly\":false,\"Ratelimit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.io/zot/pkg/api/controller.go:113\",\"time\":\"2022-04-10T23:08:15.926559322-07:00\",\"message\":\"configuration settings\"}\r\n{\"level\":\"info\",\"cpus\":8,\"max. open files\":1024,\"listen backlog\":\"4096\",\"max. inotify watches\":\"60023\",\"goroutine\":1,\"caller\":\"zotregistry.io/zot/pkg/api/controller.go:101\",\"time\":\"2022-04-10T23:08:15.926650495-07:00\",\"message\":\"runtime params\"}\r\n"]
|
||||
[28.004213, "o", "{\"level\":\"info\",\"params\":{\"distSpecVersion\":\"1.0.1\",\"GoVersion\":\"go1.17.7\",\"Commit\":\"v1.4.0-rc3-1-ge583c2f\",\"BinaryType\":\"extended\",\"AccessControl\":null,\"Storage\":{\"Dedupe\":true,\"GC\":true,\"Commit\":false,\"GCDelay\":3600000000000,\"RootDirectory\":\"/tmp/zot\",\"StorageDriver\":null,\"SubPaths\":null},\"HTTP\":{\"Address\":\"127.0.0.1\",\"Port\":\"8080\",\"AllowOrigin\":\"\",\"TLS\":null,\"Auth\":null,\"RawAccessControl\":null,\"Realm\":\"\",\"AllowReadAccess\":false,\"ReadOnly\":false,\"Ratelimit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.dev/zot/pkg/api/controller.go:113\",\"time\":\"2022-04-10T23:08:15.926559322-07:00\",\"message\":\"configuration settings\"}\r\n{\"level\":\"info\",\"cpus\":8,\"max. open files\":1024,\"listen backlog\":\"4096\",\"max. inotify watches\":\"60023\",\"goroutine\":1,\"caller\":\"zotregistry.dev/zot/pkg/api/controller.go:101\",\"time\":\"2022-04-10T23:08:15.926650495-07:00\",\"message\":\"runtime params\"}\r\n"]
|
||||
[28.934316, "i", "\r"]
|
||||
[28.934806, "o", "\n"]
|
||||
[29.128211, "i", "\r"]
|
||||
|
|
Before Width: | Height: | Size: 180 KiB After Width: | Height: | Size: 180 KiB |
|
@ -7,7 +7,7 @@
|
|||
[1.100585, "o", "docker run -p 5000:5000 ghcr.io/project-zot/zot-linux-amd64:latest"]
|
||||
[1.442512, "i", "\r"]
|
||||
[1.44321, "o", "\r\n"]
|
||||
[1.863111, "o", "{\"level\":\"info\",\"params\":{\"distSpecVersion\":\"1.0.1\",\"GoVersion\":\"go1.17.5\",\"Commit\":\"v1.4.0-rc2-554e99a967b0e1fcc99eee2ec325e0aeda63d551\",\"BinaryType\":\"extended\",\"AccessControl\":null,\"Storage\":{\"Dedupe\":true,\"GC\":true,\"Commit\":false,\"GCDelay\":3600000000000,\"RootDirectory\":\"/var/lib/registry\",\"StorageDriver\":null,\"SubPaths\":null},\"HTTP\":{\"Address\":\"0.0.0.0\",\"Port\":\"5000\",\"AllowOrigin\":\"\",\"TLS\":null,\"Auth\":null,\"RawAccessControl\":null,\"Realm\":\"\",\"AllowReadAccess\":false,\"ReadOnly\":false,\"Ratelimit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.io/zot/pkg/api/controller.go:113\",\"time\":\"2022-04-11T06:24:52.513723934Z\",\"message\":\"configuration settings\"}\r\n{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"listen backlog\":\"4096\",\"max. inotify watches\":\"60023\",\"goroutine\":1,\"caller\":\"zotregistry.io/zot/pkg/api/controller.go:101\",\"time\":\"2022-04-11T06:24:52.513883845Z\",\"message\":\"runtime params\"}\r\n"]
|
||||
[1.863111, "o", "{\"level\":\"info\",\"params\":{\"distSpecVersion\":\"1.0.1\",\"GoVersion\":\"go1.17.5\",\"Commit\":\"v1.4.0-rc2-554e99a967b0e1fcc99eee2ec325e0aeda63d551\",\"BinaryType\":\"extended\",\"AccessControl\":null,\"Storage\":{\"Dedupe\":true,\"GC\":true,\"Commit\":false,\"GCDelay\":3600000000000,\"RootDirectory\":\"/var/lib/registry\",\"StorageDriver\":null,\"SubPaths\":null},\"HTTP\":{\"Address\":\"0.0.0.0\",\"Port\":\"5000\",\"AllowOrigin\":\"\",\"TLS\":null,\"Auth\":null,\"RawAccessControl\":null,\"Realm\":\"\",\"AllowReadAccess\":false,\"ReadOnly\":false,\"Ratelimit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.dev/zot/pkg/api/controller.go:113\",\"time\":\"2022-04-11T06:24:52.513723934Z\",\"message\":\"configuration settings\"}\r\n{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"listen backlog\":\"4096\",\"max. inotify watches\":\"60023\",\"goroutine\":1,\"caller\":\"zotregistry.dev/zot/pkg/api/controller.go:101\",\"time\":\"2022-04-11T06:24:52.513883845Z\",\"message\":\"runtime params\"}\r\n"]
|
||||
[3.289008, "i", "\u0001"]
|
||||
[3.679271, "i", "d"]
|
||||
[3.679735, "o", "\u001b[?1l\u001b>\u001b[38;1H\r\n\u001b[?1049l\u001b[23;0;0t"]
|
||||
|
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 4.9 KiB |
|
@ -249,7 +249,7 @@
|
|||
[7.274013, "i", "\r"]
|
||||
[7.274687, "o", "\r\n"]
|
||||
[7.28773, "o", "go mod tidy\r\n"]
|
||||
[7.814666, "o", "env CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o bin/zot-linux-amd64 -buildmode=pie -tags extended,containers_image_openpgp -v -trimpath -ldflags \"-X zotregistry.io/zot/pkg/api/config.Commit=v1.4.0-rc3-1-ge583c2f -X zotregistry.io/zot/pkg/api/config.BinaryType=extended -X zotregistry.io/zot/pkg/api/config.GoVersion=go1.17.7 -s -w\" ./cmd/zot\r\n"]
|
||||
[7.814666, "o", "env CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o bin/zot-linux-amd64 -buildmode=pie -tags extended,containers_image_openpgp -v -trimpath -ldflags \"-X zotregistry.dev/zot/pkg/api/config.Commit=v1.4.0-rc3-1-ge583c2f -X zotregistry.dev/zot/pkg/api/config.BinaryType=extended -X zotregistry.dev/zot/pkg/api/config.GoVersion=go1.17.7 -s -w\" ./cmd/zot\r\n"]
|
||||
[10.405138, "o", "\u001b[32m$ \u001b[39m"]
|
||||
[13.980122, "i", "l"]
|
||||
[13.980725, "o", "l"]
|
||||
|
@ -282,7 +282,7 @@
|
|||
[23.131551, "i", "\r"]
|
||||
[23.132194, "o", "\r\n"]
|
||||
[23.144726, "o", "go mod tidy\r\n"]
|
||||
[23.578377, "o", "env CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o bin/zot-linux-arm64 -buildmode=pie -tags extended,containers_image_openpgp -v -trimpath -ldflags \"-X zotregistry.io/zot/pkg/api/config.Commit=v1.4.0-rc3-1-ge583c2f -X zotregistry.io/zot/pkg/api/config.BinaryType=extended -X zotregistry.io/zot/pkg/api/config.GoVersion=go1.17.7 -s -w\" ./cmd/zot\r\n"]
|
||||
[23.578377, "o", "env CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o bin/zot-linux-arm64 -buildmode=pie -tags extended,containers_image_openpgp -v -trimpath -ldflags \"-X zotregistry.dev/zot/pkg/api/config.Commit=v1.4.0-rc3-1-ge583c2f -X zotregistry.dev/zot/pkg/api/config.BinaryType=extended -X zotregistry.dev/zot/pkg/api/config.GoVersion=go1.17.7 -s -w\" ./cmd/zot\r\n"]
|
||||
[26.263223, "o", "\u001b[32m$ \u001b[39m"]
|
||||
[28.435297, "i", "\r"]
|
||||
[28.435982, "o", "\r\n\u001b[32m$ \u001b[39m"]
|
||||
|
@ -291,14 +291,14 @@
|
|||
[29.525918, "i", "\r"]
|
||||
[29.526615, "o", "\r\n"]
|
||||
[29.538303, "o", "go mod tidy\r\n"]
|
||||
[30.014147, "o", "env CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o bin/zot-darwin-amd64 -buildmode=pie -tags extended,containers_image_openpgp -v -trimpath -ldflags \"-X zotregistry.io/zot/pkg/api/config.Commit=v1.4.0-rc3-1-ge583c2f -X zotregistry.io/zot/pkg/api/config.BinaryType=extended -X zotregistry.io/zot/pkg/api/config.GoVersion=go1.17.7 -s -w\" ./cmd/zot\r\n"]
|
||||
[30.014147, "o", "env CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o bin/zot-darwin-amd64 -buildmode=pie -tags extended,containers_image_openpgp -v -trimpath -ldflags \"-X zotregistry.dev/zot/pkg/api/config.Commit=v1.4.0-rc3-1-ge583c2f -X zotregistry.dev/zot/pkg/api/config.BinaryType=extended -X zotregistry.dev/zot/pkg/api/config.GoVersion=go1.17.7 -s -w\" ./cmd/zot\r\n"]
|
||||
[32.749036, "o", "\u001b[32m$ \u001b[39m"]
|
||||
[34.710083, "i", "make OS=darwin ARCH=arm64 binary"]
|
||||
[34.710825, "o", "make OS=darwin ARCH=arm64 binary"]
|
||||
[35.312014, "i", "\r"]
|
||||
[35.312848, "o", "\r\n"]
|
||||
[35.324987, "o", "go mod tidy\r\n"]
|
||||
[35.783444, "o", "env CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -o bin/zot-darwin-arm64 -buildmode=pie -tags extended,containers_image_openpgp -v -trimpath -ldflags \"-X zotregistry.io/zot/pkg/api/config.Commit=v1.4.0-rc3-1-ge583c2f -X zotregistry.io/zot/pkg/api/config.BinaryType=extended -X zotregistry.io/zot/pkg/api/config.GoVersion=go1.17.7 -s -w\" ./cmd/zot\r\n"]
|
||||
[35.783444, "o", "env CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -o bin/zot-darwin-arm64 -buildmode=pie -tags extended,containers_image_openpgp -v -trimpath -ldflags \"-X zotregistry.dev/zot/pkg/api/config.Commit=v1.4.0-rc3-1-ge583c2f -X zotregistry.dev/zot/pkg/api/config.BinaryType=extended -X zotregistry.dev/zot/pkg/api/config.GoVersion=go1.17.7 -s -w\" ./cmd/zot\r\n"]
|
||||
[38.84018, "o", "\u001b[32m$ \u001b[39m"]
|
||||
[40.470596, "i", "l"]
|
||||
[40.471211, "o", "l"]
|
||||
|
|
Before Width: | Height: | Size: 164 KiB After Width: | Height: | Size: 164 KiB |
|
@ -7,9 +7,9 @@
|
|||
[1.445552, "o", "\u001b[39mpodman run -p 5000:5000 ghcr.io/project-zot/zot-linux-amd64:latest"]
|
||||
[2.479597, "i", "\r"]
|
||||
[2.480397, "o", "\r\u001b[32m$\b\n\u001b[39m \b"]
|
||||
[2.865849, "o", "\u001b[H\u001b[K{\"level\":\"info\",\"params\":{\"Version\":\"1.0.0-dev\",\"GoVersion\":\"go1.17.5\",\"Commit\":\"v1.3.8-rc3-38a110314ba3af67f970ed0ac90\r\n\u001b[K\u001b[1;119H09102edf7208d3\",\"BinaryType\":\"extended\",\"AccessControl\":null,\"Storage\":{\"Dedupe\":true,\"GC\":true,\"Commit\":false,\"GCDelay\"\r\n\u001b[K\u001b[2;119H\":3600000000000,\"RootDirectory\":\"/var/lib/registry\",\"StorageDriver\":null,\"SubPaths\":null},\"HTTP\":{\"Address\":\"0.0.0.0\",\"P\r\n\u001b[K\u001b[3;119HPort\":\"5000\",\"TLS\":null,\"Auth\":null,\"RawAccessControl\":null,\"Realm\":\"\",\"AllowReadAccess\":false,\"ReadOnly\":false,\"Ratelim\r\n\u001b[K\u001b[4;119Hmit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.io/zot/\r\n\u001b[K\u001b[5;119H/pkg/api/controller.go:103\",\"time\":\"2022-04-11T08:02:28.796235688Z\",\"message\":\"configuration settings\"}\r\n\u001b[K{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"max. inotify watches\":\"2147483647\",\"goroutine\":1,\"caller\":\"zotregis\r\n\u001b[K\u001b[7;119Hstry.io/zot/pkg/api/controller.go:91\",\"time\":\"2022-04-11T08:02:28.796297436Z\",\"message\":\"runtime params\"}\r\n\u001b[K"]
|
||||
[2.865849, "o", "\u001b[H\u001b[K{\"level\":\"info\",\"params\":{\"Version\":\"1.0.0-dev\",\"GoVersion\":\"go1.17.5\",\"Commit\":\"v1.3.8-rc3-38a110314ba3af67f970ed0ac90\r\n\u001b[K\u001b[1;119H09102edf7208d3\",\"BinaryType\":\"extended\",\"AccessControl\":null,\"Storage\":{\"Dedupe\":true,\"GC\":true,\"Commit\":false,\"GCDelay\"\r\n\u001b[K\u001b[2;119H\":3600000000000,\"RootDirectory\":\"/var/lib/registry\",\"StorageDriver\":null,\"SubPaths\":null},\"HTTP\":{\"Address\":\"0.0.0.0\",\"P\r\n\u001b[K\u001b[3;119HPort\":\"5000\",\"TLS\":null,\"Auth\":null,\"RawAccessControl\":null,\"Realm\":\"\",\"AllowReadAccess\":false,\"ReadOnly\":false,\"Ratelim\r\n\u001b[K\u001b[4;119Hmit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.dev/zot/\r\n\u001b[K\u001b[5;119H/pkg/api/controller.go:103\",\"time\":\"2022-04-11T08:02:28.796235688Z\",\"message\":\"configuration settings\"}\r\n\u001b[K{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"max. inotify watches\":\"2147483647\",\"goroutine\":1,\"caller\":\"zotregis\r\n\u001b[K\u001b[7;119Hstry.dev/zot/pkg/api/controller.go:91\",\"time\":\"2022-04-11T08:02:28.796297436Z\",\"message\":\"runtime params\"}\r\n\u001b[K"]
|
||||
[2.922683, "i", "\r"]
|
||||
[2.92324, "o", "\u001b[H\u001b[K9102edf7208d3\",\"BinaryType\":\"extended\",\"AccessControl\":null,\"Storage\":{\"Dedupe\":true,\"GC\":true,\"Commit\":false,\"GCDelay\"\r\n\u001b[K\u001b[1;119H\":3600000000000,\"RootDirectory\":\"/var/lib/registry\",\"StorageDriver\":null,\"SubPaths\":null},\"HTTP\":{\"Address\":\"0.0.0.0\",\"P\r\n\u001b[K\u001b[2;119HPort\":\"5000\",\"TLS\":null,\"Auth\":null,\"RawAccessControl\":null,\"Realm\":\"\",\"AllowReadAccess\":false,\"ReadOnly\":false,\"Ratelim\r\n\u001b[K\u001b[3;119Hmit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.io/zot/\r\n\u001b[K\u001b[4;119H/pkg/api/controller.go:103\",\"time\":\"2022-04-11T08:02:28.796235688Z\",\"message\":\"configuration settings\"}\r\n\u001b[K{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"max. inotify watches\":\"2147483647\",\"goroutine\":1,\"caller\":\"zotregis\r\n\u001b[K\u001b[6;119Hstry.io/zot/pkg/api/controller.go:91\",\"time\":\"2022-04-11T08:02:28.796297436Z\",\"message\":\"runtime params\"}\r\n\u001b[K\n\u001b[K"]
|
||||
[2.92324, "o", "\u001b[H\u001b[K9102edf7208d3\",\"BinaryType\":\"extended\",\"AccessControl\":null,\"Storage\":{\"Dedupe\":true,\"GC\":true,\"Commit\":false,\"GCDelay\"\r\n\u001b[K\u001b[1;119H\":3600000000000,\"RootDirectory\":\"/var/lib/registry\",\"StorageDriver\":null,\"SubPaths\":null},\"HTTP\":{\"Address\":\"0.0.0.0\",\"P\r\n\u001b[K\u001b[2;119HPort\":\"5000\",\"TLS\":null,\"Auth\":null,\"RawAccessControl\":null,\"Realm\":\"\",\"AllowReadAccess\":false,\"ReadOnly\":false,\"Ratelim\r\n\u001b[K\u001b[3;119Hmit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.dev/zot/\r\n\u001b[K\u001b[4;119H/pkg/api/controller.go:103\",\"time\":\"2022-04-11T08:02:28.796235688Z\",\"message\":\"configuration settings\"}\r\n\u001b[K{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"max. inotify watches\":\"2147483647\",\"goroutine\":1,\"caller\":\"zotregis\r\n\u001b[K\u001b[6;119Hstry.dev/zot/pkg/api/controller.go:91\",\"time\":\"2022-04-11T08:02:28.796297436Z\",\"message\":\"runtime params\"}\r\n\u001b[K\n\u001b[K"]
|
||||
[3.299072, "i", "\u0001"]
|
||||
[3.627822, "i", "\t"]
|
||||
[3.628256, "o", " \n\n"]
|
||||
|
@ -20,52 +20,52 @@
|
|||
[11.033243, "i", "\r"]
|
||||
[11.033968, "o", "\u001b[12;119Hus\b\n \b"]
|
||||
[12.550283, "o", "Getting image source signatures\r\n \b"]
|
||||
[12.555406, "o", "\u001b[H\u001b[Kpkg/api/controller.go:103\",\"time\":\"2022-04-11T08:02:28.796235688Z\",\"message\":\"configuration settings\"}\r\n\u001b[K{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"max. inotify watches\":\"2147483647\",\"goroutine\":1,\"caller\":\"zotregis\r\n\u001b[K\u001b[2;119Hstry.io/zot/pkg/api/controller.go:91\",\"time\":\"2022-04-11T08:02:28.796297436Z\",\"message\":\"runtime params\"}\r\n\u001b[K\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34802\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"7.834µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"\r\n\u001b[K\u001b[6;119H\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":28,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\"\r\n\u001b[K\u001b[7;119H\",\"time\":\"2022-04-11T08:02:38.48573149Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[6B"]
|
||||
[12.557208, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b\r\n\u001b[K\u001b[1;119Hb3d348b9eb9ca7df: no such file or directory\",\"blob\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266\r\n\u001b[K\u001b[2;119H6a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":30,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"time\r\n\u001b[K\u001b[3;119He\":\"2022-04-11T08:02:38.487726384Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"message\":\"failed to st\r\n\u001b[K\u001b[4;119Htat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[6;119Hdf\",\"goroutine\":30,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T08:02:38.487765509Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[6B"]
|
||||
[12.557379, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[1;119Hdf\",\"goroutine\":30,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T08:02:38.487765509Z\",\r\n\u001b[K\u001b[2;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34804\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:554879bb\r\n\u001b[K\u001b[4;119Hb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":404,\"latency\":\"571.016µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[5;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[6;119Hroutine\":30,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:38.488073585Z\",\"message\":\"HTTP\r\n\u001b[K\u001b[7;119HP API\"}\r\n\u001b[K\u001b[6B"]
|
||||
[13.075392, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b\r\n\u001b[K\u001b[1;119Hb3d348b9eb9ca7df: no such file or directory\",\"blob\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266\r\n\u001b[K\u001b[2;119H6a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":12,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"time\r\n\u001b[K\u001b[3;119He\":\"2022-04-11T08:02:39.005726945Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"message\":\"failed to st\r\n\u001b[K\u001b[4;119Htat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[6;119Hdf\",\"goroutine\":12,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"tim"]
|
||||
[13.075635, "o", "e\":\"2022-04-11T08:02:39.005817457Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[6B\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[1;119Hdf\",\"goroutine\":12,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T08:02:39.005817457Z\",\r\n\u001b[K\u001b[2;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34806\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:554879bb\r\n\u001b[K\u001b[4;119Hb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":404,\"latency\":\"341.73µs\",\"bodySize\":407,\"headers\r\n\u001b[K\u001b[5;119Hs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goro\r\n\u001b[K\u001b[6;119Houtine\":12,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.005958465Z\",\"mess"]
|
||||
[12.555406, "o", "\u001b[H\u001b[Kpkg/api/controller.go:103\",\"time\":\"2022-04-11T08:02:28.796235688Z\",\"message\":\"configuration settings\"}\r\n\u001b[K{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"max. inotify watches\":\"2147483647\",\"goroutine\":1,\"caller\":\"zotregis\r\n\u001b[K\u001b[2;119Hstry.dev/zot/pkg/api/controller.go:91\",\"time\":\"2022-04-11T08:02:28.796297436Z\",\"message\":\"runtime params\"}\r\n\u001b[K\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34802\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"7.834µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"\r\n\u001b[K\u001b[6;119H\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":28,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\"\r\n\u001b[K\u001b[7;119H\",\"time\":\"2022-04-11T08:02:38.48573149Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[6B"]
|
||||
[12.557208, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b\r\n\u001b[K\u001b[1;119Hb3d348b9eb9ca7df: no such file or directory\",\"blob\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266\r\n\u001b[K\u001b[2;119H6a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":30,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"time\r\n\u001b[K\u001b[3;119He\":\"2022-04-11T08:02:38.487726384Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"message\":\"failed to st\r\n\u001b[K\u001b[4;119Htat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[6;119Hdf\",\"goroutine\":30,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T08:02:38.487765509Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[6B"]
|
||||
[12.557379, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[1;119Hdf\",\"goroutine\":30,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T08:02:38.487765509Z\",\r\n\u001b[K\u001b[2;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34804\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:554879bb\r\n\u001b[K\u001b[4;119Hb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":404,\"latency\":\"571.016µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[5;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[6;119Hroutine\":30,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:38.488073585Z\",\"message\":\"HTTP\r\n\u001b[K\u001b[7;119HP API\"}\r\n\u001b[K\u001b[6B"]
|
||||
[13.075392, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b\r\n\u001b[K\u001b[1;119Hb3d348b9eb9ca7df: no such file or directory\",\"blob\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266\r\n\u001b[K\u001b[2;119H6a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":12,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"time\r\n\u001b[K\u001b[3;119He\":\"2022-04-11T08:02:39.005726945Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"message\":\"failed to st\r\n\u001b[K\u001b[4;119Htat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[6;119Hdf\",\"goroutine\":12,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"tim"]
|
||||
[13.075635, "o", "e\":\"2022-04-11T08:02:39.005817457Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[6B\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[1;119Hdf\",\"goroutine\":12,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T08:02:39.005817457Z\",\r\n\u001b[K\u001b[2;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34806\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:554879bb\r\n\u001b[K\u001b[4;119Hb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":404,\"latency\":\"341.73µs\",\"bodySize\":407,\"headers\r\n\u001b[K\u001b[5;119Hs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goro\r\n\u001b[K\u001b[6;119Houtine\":12,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.005958465Z\",\"mess"]
|
||||
[13.075757, "o", "age\":\"HTTP \r\n\u001b[K\u001b[7;119H API\"}\r\n\u001b[K\u001b[6B"]
|
||||
[13.078011, "o", "\u001b[H\u001b[K300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":404,\"latency\":\"341.73µs\",\"bodySize\":407,\"headers\r\n\u001b[K\u001b[1;119Hs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goro\r\n\u001b[K\u001b[2;119Houtine\":12,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.005958465Z\",\"message\":\"HTTP \r\n\u001b[K\u001b[3;119H API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34808\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[5;119HtusCode\":202,\"latency\":\"821.011µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Le\r\n\u001b[K\u001b[6;119Hength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":31,\"cal\r\n\u001b[K\u001b[7;119Hller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.008607484Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[6B"]
|
||||
[13.078011, "o", "\u001b[H\u001b[K300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":404,\"latency\":\"341.73µs\",\"bodySize\":407,\"headers\r\n\u001b[K\u001b[1;119Hs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goro\r\n\u001b[K\u001b[2;119Houtine\":12,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.005958465Z\",\"message\":\"HTTP \r\n\u001b[K\u001b[3;119H API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34808\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[5;119HtusCode\":202,\"latency\":\"821.011µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Le\r\n\u001b[K\u001b[6;119Hength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":31,\"cal\r\n\u001b[K\u001b[7;119Hller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.008607484Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[6B"]
|
||||
[13.15063, "o", "Copying blob 554879bb3004 [==============================>-------] 610.4KiB / 754.7KiB\r\n \b"]
|
||||
[13.162505, "o", "\u001b[A\u001b[KCopying blob 554879bb3004 [======================================] 754.7KiB / 754.7KiB\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[21A\u001b[A\u001b[KCopying blob 554879bb3004 done\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[21A\u001b[A\u001b[KCopying blob 554879bb3004 done\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[21A"]
|
||||
[13.163032, "o", "\u001b[H\u001b[KusCode\":202,\"latency\":\"821.011µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Le\r\n\u001b[K\u001b[1;119Hength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":31,\"cal\r\n\u001b[K\u001b[2;119Hller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.008607484Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34810\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/fcc838\r\n\u001b[K\u001b[4;119H8d2-fb1b-4d4d-a13e-5f670eda8d74\",\"statusCode\":202,\"latency\":\"83.785431ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gz\r\n\u001b[K\u001b[5;119Hzip\"],\"Connection\":[\"close\"],\"Content-Length\":[\"772806\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distributio\r\n\u001b[K\u001b[6;119Hon-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":65,\"caller\":\"zotregistry.io/zot/pkg/ap\r\n\u001b[K\u001b[7;119Hpi/session.go:132\",\"time\":\"2022-04-11T08:02:39.093567068Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[13.164533, "o", "\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.008607484Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34810\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/fcc838\r\n\u001b[K\u001b[2;119H8d2-fb1b-4d4d-a13e-5f670eda8d74\",\"statusCode\":202,\"latency\":\"83.785431ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gz\r\n\u001b[K\u001b[3;119Hzip\"],\"Connection\":[\"close\"],\"Content-Length\":[\"772806\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distributio\r\n\u001b[K\u001b[4;119Hon-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":65,\"caller\":\"zotregistry.io/zot/pkg/ap\r\n\u001b[K\u001b[5;119Hpi/session.go:132\",\"time\":\"2022-04-11T08:02:39.093567068Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":52,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T08:02:39.09516161Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[7B"]
|
||||
[13.16563, "o", "\u001b[H\u001b[Ki/session.go:132\",\"time\":\"2022-04-11T08:02:39.093567068Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":52,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[2;119H4-11T08:02:39.09516161Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/fcc838d2-fb1b-4d4d-a13e-5f670eda8d74\",\"dstDigest\":\"sha256:55\r\n\u001b[K\u001b[4;119H54879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/554879bb3\r\n\u001b[K\u001b[5;119H300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":52,\"caller\":\"zotregistry.io/zot/pkg/storage/storag\r\n\u001b[K\u001b[6;119Hge_fs.go:1146\",\"time\":\"2022-04-11T08:02:39.096352185Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[7;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K\u001b[7B"]
|
||||
[13.167508, "o", "\u001b[H\u001b[K4879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/554879bb3\r\n\u001b[K\u001b[1;119H300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":52,\"caller\":\"zotregistry.io/zot/pkg/storage/storag\r\n\u001b[K\u001b[2;119Hge_fs.go:1146\",\"time\":\"2022-04-11T08:02:39.096352185Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[3;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/fcc838d2-fb1b-4d4d-a13e-5f670eda8d74\",\"dst\":\"/var/lib/regist\r\n\u001b[K\u001b[5;119Htry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":52,\"caller\":\"zotr\r\n\u001b[K\u001b[6;119Hregistry.io/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T08:02:39.098135196Z\",\"caller\":\"zotregistry.io/zot/pkg\r\n\u001b[K\u001b[7;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K\u001b[7B\u001b[H\u001b[Kegistry.io/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T08:02:39.098135196Z\",\"caller\":\"zotregistry.io/zot/pkg\r\n\u001b"]
|
||||
[13.167645, "o", "[K\u001b[1;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34812\",\"method\":\"PUT\",\"path\":\"/v2/busybox/blobs/uploads/fcc838d2\r\n\u001b[K\u001b[3;119H2-fb1b-4d4d-a13e-5f670eda8d74?digest=sha256%3A554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusC\r\n\u001b[K\u001b[4;119HCode\":201,\"latency\":\"3.162745ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Leng\r\n\u001b[K\u001b[5;119Hgth\":[\"0\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\r\n\u001b[K\u001b[6;119H[\"Go-http-client/1.1\"]},\"goroutine\":52,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.\r\n\u001b[K\u001b[7;119H.098213214Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[13.604359, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8\r\n\u001b[K\u001b[1;119H8b\",\"goroutine\":53,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T08:02:39.53468061Z\",\"\r\n\u001b[K\u001b[2;119H\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34814\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:02611b03\r\n\u001b[K\u001b[4;119H34a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusCode\":404,\"latency\":\"328.505µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[5;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[6;119Hroutine\":53,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.534793384Z\",\"message\":\"HTTP\r\n\u001b[K\u001b[7;119HP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[13.606226, "o", "\u001b[H\u001b[K4a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusCode\":404,\"latency\":\"328.505µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[1;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[2;119Hroutine\":53,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.534793384Z\",\"message\":\"HTTP\r\n\u001b[K\u001b[3;119HP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34816\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[5;119HtusCode\":202,\"latency\":\"157.72µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Len\r\n\u001b[K\u001b[6;119Hngth\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":66,\"call\r\n\u001b[K\u001b[7;119Hler\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.536743924Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[13.163032, "o", "\u001b[H\u001b[KusCode\":202,\"latency\":\"821.011µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Le\r\n\u001b[K\u001b[1;119Hength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":31,\"cal\r\n\u001b[K\u001b[2;119Hller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.008607484Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34810\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/fcc838\r\n\u001b[K\u001b[4;119H8d2-fb1b-4d4d-a13e-5f670eda8d74\",\"statusCode\":202,\"latency\":\"83.785431ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gz\r\n\u001b[K\u001b[5;119Hzip\"],\"Connection\":[\"close\"],\"Content-Length\":[\"772806\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distributio\r\n\u001b[K\u001b[6;119Hon-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":65,\"caller\":\"zotregistry.dev/zot/pkg/ap\r\n\u001b[K\u001b[7;119Hpi/session.go:132\",\"time\":\"2022-04-11T08:02:39.093567068Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[13.164533, "o", "\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.008607484Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34810\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/fcc838\r\n\u001b[K\u001b[2;119H8d2-fb1b-4d4d-a13e-5f670eda8d74\",\"statusCode\":202,\"latency\":\"83.785431ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gz\r\n\u001b[K\u001b[3;119Hzip\"],\"Connection\":[\"close\"],\"Content-Length\":[\"772806\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distributio\r\n\u001b[K\u001b[4;119Hon-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":65,\"caller\":\"zotregistry.dev/zot/pkg/ap\r\n\u001b[K\u001b[5;119Hpi/session.go:132\",\"time\":\"2022-04-11T08:02:39.093567068Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":52,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T08:02:39.09516161Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[7B"]
|
||||
[13.16563, "o", "\u001b[H\u001b[Ki/session.go:132\",\"time\":\"2022-04-11T08:02:39.093567068Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":52,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[2;119H4-11T08:02:39.09516161Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/fcc838d2-fb1b-4d4d-a13e-5f670eda8d74\",\"dstDigest\":\"sha256:55\r\n\u001b[K\u001b[4;119H54879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/554879bb3\r\n\u001b[K\u001b[5;119H300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":52,\"caller\":\"zotregistry.dev/zot/pkg/storage/storag\r\n\u001b[K\u001b[6;119Hge_fs.go:1146\",\"time\":\"2022-04-11T08:02:39.096352185Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[7;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K\u001b[7B"]
|
||||
[13.167508, "o", "\u001b[H\u001b[K4879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/554879bb3\r\n\u001b[K\u001b[1;119H300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":52,\"caller\":\"zotregistry.dev/zot/pkg/storage/storag\r\n\u001b[K\u001b[2;119Hge_fs.go:1146\",\"time\":\"2022-04-11T08:02:39.096352185Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[3;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/fcc838d2-fb1b-4d4d-a13e-5f670eda8d74\",\"dst\":\"/var/lib/regist\r\n\u001b[K\u001b[5;119Htry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":52,\"caller\":\"zotr\r\n\u001b[K\u001b[6;119Hregistry.dev/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T08:02:39.098135196Z\",\"caller\":\"zotregistry.dev/zot/pkg\r\n\u001b[K\u001b[7;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K\u001b[7B\u001b[H\u001b[Kegistry.dev/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T08:02:39.098135196Z\",\"caller\":\"zotregistry.dev/zot/pkg\r\n\u001b"]
|
||||
[13.167645, "o", "[K\u001b[1;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34812\",\"method\":\"PUT\",\"path\":\"/v2/busybox/blobs/uploads/fcc838d2\r\n\u001b[K\u001b[3;119H2-fb1b-4d4d-a13e-5f670eda8d74?digest=sha256%3A554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusC\r\n\u001b[K\u001b[4;119HCode\":201,\"latency\":\"3.162745ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Leng\r\n\u001b[K\u001b[5;119Hgth\":[\"0\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\r\n\u001b[K\u001b[6;119H[\"Go-http-client/1.1\"]},\"goroutine\":52,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.\r\n\u001b[K\u001b[7;119H.098213214Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[13.604359, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8\r\n\u001b[K\u001b[1;119H8b\",\"goroutine\":53,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T08:02:39.53468061Z\",\"\r\n\u001b[K\u001b[2;119H\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34814\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:02611b03\r\n\u001b[K\u001b[4;119H34a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusCode\":404,\"latency\":\"328.505µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[5;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[6;119Hroutine\":53,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.534793384Z\",\"message\":\"HTTP\r\n\u001b[K\u001b[7;119HP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[13.606226, "o", "\u001b[H\u001b[K4a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusCode\":404,\"latency\":\"328.505µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[1;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[2;119Hroutine\":53,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.534793384Z\",\"message\":\"HTTP\r\n\u001b[K\u001b[3;119HP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34816\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[5;119HtusCode\":202,\"latency\":\"157.72µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Len\r\n\u001b[K\u001b[6;119Hngth\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":66,\"call\r\n\u001b[K\u001b[7;119Hler\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.536743924Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[13.606913, "o", "Copying config 02611b034a [======================================] 575.0b / 575.0b\r\n \b\u001b[A\u001b[KCopying config 02611b034a done\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[20A"]
|
||||
[13.606966, "o", "\u001b[A\u001b[KCopying config 02611b034a done\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[20A"]
|
||||
[13.607998, "o", "\u001b[H\u001b[KusCode\":202,\"latency\":\"157.72µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Len\r\n\u001b[K\u001b[1;119Hngth\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":66,\"call\r\n\u001b[K\u001b[2;119Hler\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.536743924Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34818\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/848d6b\r\n\u001b[K\u001b[4;119Hbf2-84cb-463a-a59d-4dcf6b4560e0\",\"statusCode\":202,\"latency\":\"171.215µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\r\n\u001b[K\u001b[5;119Hp\"],\"Connection\":[\"close\"],\"Content-Length\":[\"575\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api\r\n\u001b[K\u001b[6;119Hi-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":15,\"caller\":\"zotregistry.io/zot/pkg/api/ses\r\n\u001b[K\u001b[7;119Hssion.go:132\",\"time\":\"2022-04-11T08:02:39.538433959Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[8B"]
|
||||
[13.60926, "o", "\u001b[H\u001b[Ker\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.536743924Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34818\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/848d6b\r\n\u001b[K\u001b[2;119Hbf2-84cb-463a-a59d-4dcf6b4560e0\",\"statusCode\":202,\"latency\":\"171.215µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\r\n\u001b[K\u001b[3;119Hp\"],\"Connection\":[\"close\"],\"Content-Length\":[\"575\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api\r\n\u001b[K\u001b[4;119Hi-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":15,\"caller\":\"zotregistry.io/zot/pkg/api/ses\r\n\u001b[K\u001b[5;119Hssion.go:132\",\"time\":\"2022-04-11T08:02:39.538433959Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,"]
|
||||
[13.609403, "o", "\"goroutine\":81,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T08:02:39.539896831Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[8B\u001b[H\u001b[Ksion.go:132\",\"time\":\"2022-04-11T08:02:39.538433959Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":81,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[2;119H4-11T08:02:39.539896831Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/848d6bf2-84cb-463a-a59d-4dcf6b4560e0\",\"dstDigest\":\"sha256:02\r\n\u001b[K\u001b[4;119H2611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/02611b034\r\n\u001b[K\u001b[5;119H4a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":81,\"caller\":\"zotre"]
|
||||
[13.609443, "o", "gistry.io/zot/pkg/storage/storag\r\n\u001b[K\u001b[6;119Hge_fs.go:1146\",\"time\":\"2022-04-11T08:02:39.54006971Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1146\",\"mess\r\n\u001b[K\u001b[7;119Hsage\":\"dedupe: enter\"}\r\n\u001b[K\u001b[8B"]
|
||||
[13.612791, "o", "\u001b[H\u001b[Kegistry.io/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T08:02:39.543173664Z\",\"caller\":\"zotregistry.io/zot/pkg\r\n\u001b[K\u001b[1;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34820\",\"method\":\"PUT\",\"path\":\"/v2/busybox/blobs/uploads/848d6bf2\r\n\u001b[K\u001b[3;119H2-84cb-463a-a59d-4dcf6b4560e0?digest=sha256%3A02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusC\r\n\u001b[K\u001b[4;119HCode\":201,\"latency\":\"3.416267ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Leng\r\n\u001b[K\u001b[5;119Hgth\":[\"0\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\r\n\u001b[K\u001b[6;119H[\"Go-http-client/1.1\"]},\"goroutine\":81,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.\r\n\u001b[K\u001b[7;119H.54329255Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[8B"]
|
||||
[13.607998, "o", "\u001b[H\u001b[KusCode\":202,\"latency\":\"157.72µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Len\r\n\u001b[K\u001b[1;119Hngth\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":66,\"call\r\n\u001b[K\u001b[2;119Hler\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.536743924Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34818\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/848d6b\r\n\u001b[K\u001b[4;119Hbf2-84cb-463a-a59d-4dcf6b4560e0\",\"statusCode\":202,\"latency\":\"171.215µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\r\n\u001b[K\u001b[5;119Hp\"],\"Connection\":[\"close\"],\"Content-Length\":[\"575\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api\r\n\u001b[K\u001b[6;119Hi-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":15,\"caller\":\"zotregistry.dev/zot/pkg/api/ses\r\n\u001b[K\u001b[7;119Hssion.go:132\",\"time\":\"2022-04-11T08:02:39.538433959Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[8B"]
|
||||
[13.60926, "o", "\u001b[H\u001b[Ker\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.536743924Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34818\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/848d6b\r\n\u001b[K\u001b[2;119Hbf2-84cb-463a-a59d-4dcf6b4560e0\",\"statusCode\":202,\"latency\":\"171.215µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\r\n\u001b[K\u001b[3;119Hp\"],\"Connection\":[\"close\"],\"Content-Length\":[\"575\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api\r\n\u001b[K\u001b[4;119Hi-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":15,\"caller\":\"zotregistry.dev/zot/pkg/api/ses\r\n\u001b[K\u001b[5;119Hssion.go:132\",\"time\":\"2022-04-11T08:02:39.538433959Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,"]
|
||||
[13.609403, "o", "\"goroutine\":81,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T08:02:39.539896831Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[8B\u001b[H\u001b[Ksion.go:132\",\"time\":\"2022-04-11T08:02:39.538433959Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":81,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[2;119H4-11T08:02:39.539896831Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/848d6bf2-84cb-463a-a59d-4dcf6b4560e0\",\"dstDigest\":\"sha256:02\r\n\u001b[K\u001b[4;119H2611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/02611b034\r\n\u001b[K\u001b[5;119H4a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":81,\"caller\":\"zotre"]
|
||||
[13.609443, "o", "gistry.dev/zot/pkg/storage/storag\r\n\u001b[K\u001b[6;119Hge_fs.go:1146\",\"time\":\"2022-04-11T08:02:39.54006971Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1146\",\"mess\r\n\u001b[K\u001b[7;119Hsage\":\"dedupe: enter\"}\r\n\u001b[K\u001b[8B"]
|
||||
[13.612791, "o", "\u001b[H\u001b[Kegistry.dev/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T08:02:39.543173664Z\",\"caller\":\"zotregistry.dev/zot/pkg\r\n\u001b[K\u001b[1;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34820\",\"method\":\"PUT\",\"path\":\"/v2/busybox/blobs/uploads/848d6bf2\r\n\u001b[K\u001b[3;119H2-84cb-463a-a59d-4dcf6b4560e0?digest=sha256%3A02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusC\r\n\u001b[K\u001b[4;119HCode\":201,\"latency\":\"3.416267ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Leng\r\n\u001b[K\u001b[5;119Hgth\":[\"0\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\r\n\u001b[K\u001b[6;119H[\"Go-http-client/1.1\"]},\"goroutine\":81,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.\r\n\u001b[K\u001b[7;119H.54329255Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[8B"]
|
||||
[13.613949, "o", "Writing manifest to image destination\r\n \b"]
|
||||
[13.615659, "o", "\u001b[H\u001b[K-84cb-463a-a59d-4dcf6b4560e0?digest=sha256%3A02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusC\r\n\u001b[K\u001b[1;119HCode\":201,\"latency\":\"3.416267ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Leng\r\n\u001b[K\u001b[2;119Hgth\":[\"0\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\r\n\u001b[K\u001b[3;119H[\"Go-http-client/1.1\"]},\"goroutine\":81,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.\r\n\u001b[K\u001b[4;119H.54329255Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"blobPath\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d3\r\n\u001b[K\u001b[6;119H348b9eb9ca7df\",\"reference\":\"latest\",\"goroutine\":68,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:516\",\"time\":\"2\r\n\u001b[K\u001b[7;119H2022-04-11T08:02:39.546346709Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:516\",\"message\":\"manifest layers\"}\r\n\u001b[K\u001b[9B"]
|
||||
[13.616056, "o", "\u001b[H\u001b[K\"Go-http-client/1.1\"]},\"goroutine\":81,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.\r\n\u001b[K\u001b[1;119H.54329255Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"blobPath\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d3\r\n\u001b[K\u001b[3;119H348b9eb9ca7df\",\"reference\":\"latest\",\"goroutine\":68,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:516\",\"time\":\"2\r\n\u001b[K\u001b[4;119H2022-04-11T08:02:39.546346709Z\",\"caller\":\"zotregistry.io/zot/pkg/storag"]
|
||||
[13.616123, "o", "e/storage_fs.go:516\",\"message\":\"manifest layers\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-"]
|
||||
[13.616191, "o", "04-11T08:02:39.54677846Z\",\"message\":\"GC: got refer\r\n\u001b[K\u001b[7;119Hrence\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[K48b9eb9ca7df\",\"reference\":\"latest\",\"goroutine\":68,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:516\",\"time\":\"2\r\n\u001b[K\u001b[1;119H2022-04-11T08:02:39.546346709Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:516\",\"message\":\"manifest layers\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.54677846Z\",\"message\":\"GC: got refer\r\n\u001b[K\u001b[4;119Hrence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistr"]
|
||||
[13.616244, "o", "y.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.54687305Z\",\"message\":\"GC: marking f\r\n\u001b[K\u001b[7;119Hfrom root\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.54677846Z\",\"message\":\"GC: got refer\r\n\u001b[K\u001b[1;119Hrence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.54687305Z"]
|
||||
[13.616269, "o", "\",\"message\":\"GC: marking f\r\n\u001b[K\u001b[4;119Hfrom root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.546968752Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[9B"]
|
||||
[13.616453, "o", "\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.54687305Z\",\"message\":\"GC: marking f\r\n\u001b[K\u001b[1;119Hfrom root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.546968752Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"github.com/opencontainers/image-spec/specs-go::Versioned\",\"v1path\":\"github.com/opencontainers/\r\n\u001b[K\u001b[6;119H/image-spec/specs-go/v1\",\"goroutine\":68,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[7;119H08:02:39.547169714Z\",\"message\":\"detected jump outside permitted packages\"}\r"]
|
||||
[13.616539, "o", "\n\u001b[K\u001b[9B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.546968752Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"github.com/opencontainers/image-spec/specs-go::Versioned\",\"v1path\":\"github.com/opencontainers/\r\n\u001b[K\u001b[3;119H/image-spec/specs-go/v1\",\"goroutine\":68,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[4;119H08:02:39.547169714Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"deb"]
|
||||
[13.616575, "o", "ug\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.54727252Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[7;119He\"}\r\n\u001b[K\u001b[9B"]
|
||||
[13.616782, "o", "\u001b[H\u001b[Kimage-spec/specs-go/v1\",\"goroutine\":68,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[1;119H08:02:39.547169714Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.54727252Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[4;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"name"]
|
||||
[13.616821, "o", "\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":68,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547474113Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside permi"]
|
||||
[13.616884, "o", "tted packages\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.54727252Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[1;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":68,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547474113Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":68,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547596506Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside permitted packages\"}\r\n\u001b[K\u001b["]
|
||||
[13.616977, "o", "9B\u001b[H\u001b[K\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547474113Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[1;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":68,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547596506Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"v1path\":\"github.com/ope"]
|
||||
[13.617016, "o", "ncontainers/image-spec/specs-go/v1\",\"name\":\"time::Time\",\"goroutine\":68,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547705513Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside permitted packages\"}\r\n\u001b["]
|
||||
[13.617105, "o", "K\u001b[9B\u001b[H\u001b[K\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547596506Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[1;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"name\":\"time::Time\",\"goroutine\":68,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547705513Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:0261"]
|
||||
[13.617197, "o", "1b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547792369Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[K\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547705513Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[1;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547792369Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b"]
|
||||
[13.617319, "o", "3d348b9eb9ca7df\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547876068Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547876068Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":68,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39\r\n\u001b[K\u001b[3;119H9.547976829Z\",\"message\":\"skipping walk"]
|
||||
[13.615659, "o", "\u001b[H\u001b[K-84cb-463a-a59d-4dcf6b4560e0?digest=sha256%3A02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusC\r\n\u001b[K\u001b[1;119HCode\":201,\"latency\":\"3.416267ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Leng\r\n\u001b[K\u001b[2;119Hgth\":[\"0\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\r\n\u001b[K\u001b[3;119H[\"Go-http-client/1.1\"]},\"goroutine\":81,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.\r\n\u001b[K\u001b[4;119H.54329255Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"blobPath\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d3\r\n\u001b[K\u001b[6;119H348b9eb9ca7df\",\"reference\":\"latest\",\"goroutine\":68,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:516\",\"time\":\"2\r\n\u001b[K\u001b[7;119H2022-04-11T08:02:39.546346709Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:516\",\"message\":\"manifest layers\"}\r\n\u001b[K\u001b[9B"]
|
||||
[13.616056, "o", "\u001b[H\u001b[K\"Go-http-client/1.1\"]},\"goroutine\":81,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:02:39.\r\n\u001b[K\u001b[1;119H.54329255Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"blobPath\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d3\r\n\u001b[K\u001b[3;119H348b9eb9ca7df\",\"reference\":\"latest\",\"goroutine\":68,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:516\",\"time\":\"2\r\n\u001b[K\u001b[4;119H2022-04-11T08:02:39.546346709Z\",\"caller\":\"zotregistry.dev/zot/pkg/storag"]
|
||||
[13.616123, "o", "e/storage_fs.go:516\",\"message\":\"manifest layers\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-"]
|
||||
[13.616191, "o", "04-11T08:02:39.54677846Z\",\"message\":\"GC: got refer\r\n\u001b[K\u001b[7;119Hrence\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[K48b9eb9ca7df\",\"reference\":\"latest\",\"goroutine\":68,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:516\",\"time\":\"2\r\n\u001b[K\u001b[1;119H2022-04-11T08:02:39.546346709Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:516\",\"message\":\"manifest layers\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.54677846Z\",\"message\":\"GC: got refer\r\n\u001b[K\u001b[4;119Hrence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistr"]
|
||||
[13.616244, "o", "y.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.54687305Z\",\"message\":\"GC: marking f\r\n\u001b[K\u001b[7;119Hfrom root\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.54677846Z\",\"message\":\"GC: got refer\r\n\u001b[K\u001b[1;119Hrence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.54687305Z"]
|
||||
[13.616269, "o", "\",\"message\":\"GC: marking f\r\n\u001b[K\u001b[4;119Hfrom root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.546968752Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[9B"]
|
||||
[13.616453, "o", "\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.54687305Z\",\"message\":\"GC: marking f\r\n\u001b[K\u001b[1;119Hfrom root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.546968752Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"github.com/opencontainers/image-spec/specs-go::Versioned\",\"v1path\":\"github.com/opencontainers/\r\n\u001b[K\u001b[6;119H/image-spec/specs-go/v1\",\"goroutine\":68,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[7;119H08:02:39.547169714Z\",\"message\":\"detected jump outside permitted packages\"}\r"]
|
||||
[13.616539, "o", "\n\u001b[K\u001b[9B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.546968752Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"github.com/opencontainers/image-spec/specs-go::Versioned\",\"v1path\":\"github.com/opencontainers/\r\n\u001b[K\u001b[3;119H/image-spec/specs-go/v1\",\"goroutine\":68,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[4;119H08:02:39.547169714Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"deb"]
|
||||
[13.616575, "o", "ug\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.54727252Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[7;119He\"}\r\n\u001b[K\u001b[9B"]
|
||||
[13.616782, "o", "\u001b[H\u001b[Kimage-spec/specs-go/v1\",\"goroutine\":68,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[1;119H08:02:39.547169714Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.54727252Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[4;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"name"]
|
||||
[13.616821, "o", "\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":68,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547474113Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside permi"]
|
||||
[13.616884, "o", "tted packages\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.54727252Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[1;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":68,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547474113Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":68,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547596506Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside permitted packages\"}\r\n\u001b[K\u001b["]
|
||||
[13.616977, "o", "9B\u001b[H\u001b[K\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547474113Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[1;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":68,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547596506Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"v1path\":\"github.com/ope"]
|
||||
[13.617016, "o", "ncontainers/image-spec/specs-go/v1\",\"name\":\"time::Time\",\"goroutine\":68,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547705513Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside permitted packages\"}\r\n\u001b["]
|
||||
[13.617105, "o", "K\u001b[9B\u001b[H\u001b[K\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547596506Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[1;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"name\":\"time::Time\",\"goroutine\":68,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547705513Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:0261"]
|
||||
[13.617197, "o", "1b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547792369Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[K\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547705513Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[1;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547792369Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b"]
|
||||
[13.617319, "o", "3d348b9eb9ca7df\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547876068Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.547876068Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":68,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39\r\n\u001b[K\u001b[3;119H9.547976829Z\",\"message\":\"skipping walk"]
|
||||
[13.617351, "o", " into non-parseable media-type application/vnd.oci.image.layer.v1.tar+gzip of blob\r\n\u001b[K\u001b[4;119Hb sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f27"]
|
||||
[13.617416, "o", "0b3d348b9eb9ca7df\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.548060448Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[K.547976829Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.oci.image.layer.v1.tar+gzip of blob\r\n\u001b[K\u001b[1;119Hb sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d"]
|
||||
[13.617454, "o", "f\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.548060448Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.548141523Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[9B"]
|
||||
[13.617512, "o", "\u001b[H\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[1;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.548060448Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[2;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[4;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.548141523Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[5;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":68,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39\r\n\u001b[K\u001b[7;119H9.548320723Z\",\"message\":\"garbage collected 0 blobs\"}\r\n\u001b[K\u001b[9B"]
|
||||
[13.617667, "o", "\u001b[H\u001b[Ke\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":68,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39\r\n\u001b[K\u001b[2;119H9.548320723Z\",\"message\":\"garbage collected 0 blobs\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34822\",\"method\":\"PUT\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[4;119HatusCode\":201,\"latency\":\"2.493001ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-\r\n\u001b[K\u001b[5;119H-Length\":[\"347\"],\"Content-Type\":[\"application/vnd.oci.image.manifest.v1+json\"],\"Docker-Distribution-Api-Version\":[\"regis\r\n\u001b[K\u001b[6;119Hstry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":68,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[7;119Hme\":\"2022-04-11T08:02:39.54839772Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[9B"]
|
||||
[13.617416, "o", "0b3d348b9eb9ca7df\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.548060448Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[K.547976829Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.oci.image.layer.v1.tar+gzip of blob\r\n\u001b[K\u001b[1;119Hb sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d"]
|
||||
[13.617454, "o", "f\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.548060448Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.548141523Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[9B"]
|
||||
[13.617512, "o", "\u001b[H\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[1;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.548060448Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[2;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":68,\"cal\r\n\u001b[K\u001b[4;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39.548141523Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[5;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":68,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39\r\n\u001b[K\u001b[7;119H9.548320723Z\",\"message\":\"garbage collected 0 blobs\"}\r\n\u001b[K\u001b[9B"]
|
||||
[13.617667, "o", "\u001b[H\u001b[Ke\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":68,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:02:39\r\n\u001b[K\u001b[2;119H9.548320723Z\",\"message\":\"garbage collected 0 blobs\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34822\",\"method\":\"PUT\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[4;119HatusCode\":201,\"latency\":\"2.493001ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-\r\n\u001b[K\u001b[5;119H-Length\":[\"347\"],\"Content-Type\":[\"application/vnd.oci.image.manifest.v1+json\"],\"Docker-Distribution-Api-Version\":[\"regis\r\n\u001b[K\u001b[6;119Hstry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":68,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[7;119Hme\":\"2022-04-11T08:02:39.54839772Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[9B"]
|
||||
[13.617845, "o", "Storing signatures\r\n \b"]
|
||||
[13.619998, "o", "$ "]
|
||||
[15.79333, "i", "\r"]
|
||||
|
@ -93,9 +93,9 @@
|
|||
[29.0719, "o", "notation list --plain-http $IMAGE"]
|
||||
[29.548223, "i", "\r"]
|
||||
[29.549586, "o", "\r$\b\n \b"]
|
||||
[29.557649, "o", "\u001b[H\u001b[Ktry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":68,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[1;119Hme\":\"2022-04-11T08:02:39.54839772Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34824\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[3;119HatusCode\":200,\"latency\":\"214.227µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[4;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[5;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[6;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":70,\"caller\":\"zotregistry.io/zot/pkg/api/session.g\r\n\u001b[K\u001b[7;119Hgo:132\",\"time\":\"2022-04-11T08:02:55.488047986Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[23B"]
|
||||
[29.558621, "o", "\u001b[H\u001b[KtusCode\":200,\"latency\":\"214.227µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[1;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[2;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[3;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":70,\"caller\":\"zotregistry.io/zot/pkg/api/session.g\r\n\u001b[K\u001b[4;119Hgo:132\",\"time\":\"2022-04-11T08:02:55.488047986Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"artifactType\":\"appl\r\n\u001b[K\u001b[6;119Hlication/vnd.cncf.notary"]
|
||||
[29.559021, "o", ".v2.signature\",\"goroutine\":71,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1428\",\"time\":\"2022-\r\n\u001b[K\u001b[7;119H-04-11T08:02:55.489173486Z\",\"message\":\"getting manifest\"}\r\n\u001b[K\u001b[23B\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"manifest: not found\",\"name\":\"busybox\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629\r\n\u001b[K\u001b[1;119H9335037baeb12fa2c5acb960182\",\"goroutine\":71,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1432\",\"time\":\"2022-04-11T08:0\r\n\u001b[K\u001b[2;119H02:55.489317048Z\",\"message\":\"unable to get references\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34826\",\"method\":\"GET\",\"path\":\"/oras/artifacts/v1/busybox/manifes\r\n\u001b[K\u001b[4;119Hsts/sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182/referrers?artifactType=application%2Fvnd.cnc\r\n\u001b[K\u001b[5;119Hcf.notary.v2.signature\",\"statusCode\":400,\"latency\":\"272.919µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User-\r\n\u001b[K\u001b[6;119H-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":71,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11"]
|
||||
[29.557649, "o", "\u001b[H\u001b[Ktry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":68,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[1;119Hme\":\"2022-04-11T08:02:39.54839772Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34824\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[3;119HatusCode\":200,\"latency\":\"214.227µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[4;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[5;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[6;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":70,\"caller\":\"zotregistry.dev/zot/pkg/api/session.g\r\n\u001b[K\u001b[7;119Hgo:132\",\"time\":\"2022-04-11T08:02:55.488047986Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[23B"]
|
||||
[29.558621, "o", "\u001b[H\u001b[KtusCode\":200,\"latency\":\"214.227µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[1;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[2;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[3;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":70,\"caller\":\"zotregistry.dev/zot/pkg/api/session.g\r\n\u001b[K\u001b[4;119Hgo:132\",\"time\":\"2022-04-11T08:02:55.488047986Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"artifactType\":\"appl\r\n\u001b[K\u001b[6;119Hlication/vnd.cncf.notary"]
|
||||
[29.559021, "o", ".v2.signature\",\"goroutine\":71,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1428\",\"time\":\"2022-\r\n\u001b[K\u001b[7;119H-04-11T08:02:55.489173486Z\",\"message\":\"getting manifest\"}\r\n\u001b[K\u001b[23B\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"manifest: not found\",\"name\":\"busybox\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629\r\n\u001b[K\u001b[1;119H9335037baeb12fa2c5acb960182\",\"goroutine\":71,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1432\",\"time\":\"2022-04-11T08:0\r\n\u001b[K\u001b[2;119H02:55.489317048Z\",\"message\":\"unable to get references\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34826\",\"method\":\"GET\",\"path\":\"/oras/artifacts/v1/busybox/manifes\r\n\u001b[K\u001b[4;119Hsts/sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182/referrers?artifactType=application%2Fvnd.cnc\r\n\u001b[K\u001b[5;119Hcf.notary.v2.signature\",\"statusCode\":400,\"latency\":\"272.919µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User-\r\n\u001b[K\u001b[6;119H-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":71,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11"]
|
||||
[29.559265, "o", "T0\r\n\u001b[K\u001b[7;119H08:02:55.489368486Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[23B2022/04/11 01:02:55 lookup signature failure: failed to lookup signatures: 400 Bad Request\r\n \b"]
|
||||
[29.559514, "o", "$ "]
|
||||
[30.238222, "i", "\r"]
|
||||
|
@ -104,10 +104,10 @@
|
|||
[34.955469, "o", "notation verify --plain-http $IMAGE"]
|
||||
[35.428339, "i", "\r"]
|
||||
[35.429002, "o", "\r$\b\n \b"]
|
||||
[35.440308, "o", "\u001b[H\u001b[KAgent\":[\"Go-http-client/1.1\"]},\"goroutine\":71,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[1;119H08:02:55.489368486Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34828\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[3;119HatusCode\":200,\"latency\":\"226.711µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[4;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[5;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[6;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":73,\"caller\":\"zotregistry.io/zot/pkg/api/session.g\r\n\u001b[K\u001b[7;119Hgo:132\",\"time\":\"2022-04-11T08:03:01.370594302Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[35.44153, "o", "\u001b[H\u001b[KtusCode\":200,\"latency\":\"226.711µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[1;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[2;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[3;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":73,\"caller\":\"zotregistry.io/zot/pkg/api/session.g\r\n\u001b[K\u001b[4;119Hgo:132\",\"time\":\"2022-04-11T08:03:01.370594302Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"artifactType\":\"appl\r\n\u001b[K\u001b[6;119Hlication/vnd.cncf.notary"]
|
||||
[35.441693, "o", ".v2.signature\",\"goroutine\":83,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1428\",\"time\":\"2022-\r\n\u001b[K\u001b[7;119H-04-11T08:03:01.372120172Z\",\"message\":\"getting manifest\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Konnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":73,\"caller\":\"zotregistry.io/zot/pkg/api/session.g\r\n\u001b[K\u001b[1;119Hgo:132\",\"time\":\"2022-04-11T08:03:01.370594302Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"artifactType\":\"appl\r\n\u001b[K\u001b[3;119Hlication/vnd.cncf.notary.v2.signature\",\"goroutine\":83,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1428\",\"time\":\"2022-\r\n\u001b[K\u001b[4;119H-04-11T08:03:01.372120172Z\",\"message\":\"getting manifest\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"manifest: not found\",\"name\":\"busybox\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629\r\n\u001b[K\u001b[6;119H9335037baeb12fa2c5acb960182\",\"goroutine\":83,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1432\",\"time\":\"2022-04-11T08:0\r\n\u001b[K\u001b[7;119H03:01.372341042Z\",\"message\":\"unable to get r"]
|
||||
[35.441845, "o", "eferences\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"manifest: not found\",\"name\":\"busybox\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629\r\n\u001b[K\u001b[1;119H9335037baeb12fa2c5acb960182\",\"goroutine\":83,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1432\",\"time\":\"2022-04-11T08:0\r\n\u001b[K\u001b[2;119H03:01.372341042Z\",\"message\":\"unable to get references\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34830\",\"method\":\"GET\",\"path\":\"/oras/artifacts/v1/busybox/manifes\r\n\u001b[K\u001b[4;119Hsts/sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182/referrers?artifactType=application%2Fvnd.cnc\r\n\u001b[K\u001b[5;119Hcf.notary.v2.signature\",\"statusCode\":400,\"latency\":\"344.565µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User-\r\n\u001b[K\u001b[6;119H-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":83,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[7;119H08:03:01.372412689Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[35.440308, "o", "\u001b[H\u001b[KAgent\":[\"Go-http-client/1.1\"]},\"goroutine\":71,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[1;119H08:02:55.489368486Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34828\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[3;119HatusCode\":200,\"latency\":\"226.711µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[4;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[5;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[6;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":73,\"caller\":\"zotregistry.dev/zot/pkg/api/session.g\r\n\u001b[K\u001b[7;119Hgo:132\",\"time\":\"2022-04-11T08:03:01.370594302Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[35.44153, "o", "\u001b[H\u001b[KtusCode\":200,\"latency\":\"226.711µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[1;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[2;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[3;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":73,\"caller\":\"zotregistry.dev/zot/pkg/api/session.g\r\n\u001b[K\u001b[4;119Hgo:132\",\"time\":\"2022-04-11T08:03:01.370594302Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"artifactType\":\"appl\r\n\u001b[K\u001b[6;119Hlication/vnd.cncf.notary"]
|
||||
[35.441693, "o", ".v2.signature\",\"goroutine\":83,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1428\",\"time\":\"2022-\r\n\u001b[K\u001b[7;119H-04-11T08:03:01.372120172Z\",\"message\":\"getting manifest\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[Konnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":73,\"caller\":\"zotregistry.dev/zot/pkg/api/session.g\r\n\u001b[K\u001b[1;119Hgo:132\",\"time\":\"2022-04-11T08:03:01.370594302Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"artifactType\":\"appl\r\n\u001b[K\u001b[3;119Hlication/vnd.cncf.notary.v2.signature\",\"goroutine\":83,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1428\",\"time\":\"2022-\r\n\u001b[K\u001b[4;119H-04-11T08:03:01.372120172Z\",\"message\":\"getting manifest\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"manifest: not found\",\"name\":\"busybox\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629\r\n\u001b[K\u001b[6;119H9335037baeb12fa2c5acb960182\",\"goroutine\":83,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1432\",\"time\":\"2022-04-11T08:0\r\n\u001b[K\u001b[7;119H03:01.372341042Z\",\"message\":\"unable to get r"]
|
||||
[35.441845, "o", "eferences\"}\r\n\u001b[K\u001b[26B\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"manifest: not found\",\"name\":\"busybox\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629\r\n\u001b[K\u001b[1;119H9335037baeb12fa2c5acb960182\",\"goroutine\":83,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1432\",\"time\":\"2022-04-11T08:0\r\n\u001b[K\u001b[2;119H03:01.372341042Z\",\"message\":\"unable to get references\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34830\",\"method\":\"GET\",\"path\":\"/oras/artifacts/v1/busybox/manifes\r\n\u001b[K\u001b[4;119Hsts/sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182/referrers?artifactType=application%2Fvnd.cnc\r\n\u001b[K\u001b[5;119Hcf.notary.v2.signature\",\"statusCode\":400,\"latency\":\"344.565µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User-\r\n\u001b[K\u001b[6;119H-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":83,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[7;119H08:03:01.372412689Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[35.442165, "o", "2022/04/11 01:03:01 lookup signature failure: failed to lookup signatures: 400 Bad Request\r\n \b"]
|
||||
[35.44265, "o", "$ "]
|
||||
[36.206246, "i", "\r"]
|
||||
|
@ -117,47 +117,47 @@
|
|||
[42.953826, "i", "\r"]
|
||||
[42.955245, "o", "\r\u001b[26A\u001b[K$ skopeo --insecure-policy copy --format=oci --dest-tls-verify=false docker://busybox:latest docker://localhost:5000/bu\r\n\u001b[K\u001b[11;119Husybox:latest\r\n\u001b[KGetting image source signatures\r\n\u001b[KCopying blob 554879bb3004 done\r\n\u001b[KCopying config 02611b034a done\r\n\u001b[KWriting manifest to image destination\r\n\u001b[KStoring signatures\r\n\u001b[K$\b\n\u001b[K$ export IMAGE=localhost:5000/busybox:latest\r\n\u001b[K$\b\n\u001b[K$ notation cert generate-test --default --trust \"zot-demo\"\r\n\u001b[Kgenerating RSA Key with 2048 bits\r\n\u001b[Kgenerated certificates expiring on 2023-04-11T08:02:48Z\r\n\u001b[Kwrote key: /home/ram/.config/notation/key/zot-demo.key\r\n\u001b[Kwrote certificate: /home/ram/.config/notation/certificate/zot-demo.crt\r\n\u001b[Kzot-demo: added to the key list\r\n\u001b[Kzot-demo: marked as default\r\n\u001b[Kzot-demo: added to the certificate list\r\n\u001b[K$\b\n\u001b[K$ notation list --plain-http $IMAGE\r\n\u001b[K2022/04/11 01:02:55 lookup signature failure: failed to lookup signatures: 400 Bad Request\r\n\u001b[K$\b\n\u001b[K$ notation verify --plain-http $IMAGE\r\n\u001b[K2022/04/11 01:03:01 lookup signature"]
|
||||
[42.955407, "o", " failure: failed to lookup signatures: 400 Bad Request\r\n\u001b[K$\b\n\u001b[K$ notation sign --plain-http $IMAGE\r\n\u001b[K"]
|
||||
[42.965884, "o", "\u001b[H\u001b[KAgent\":[\"Go-http-client/1.1\"]},\"goroutine\":83,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[1;119H08:03:01.372412689Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34832\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[3;119HatusCode\":200,\"latency\":\"229.305µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[4;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[5;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[6;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/api/session.g\r\n\u001b[K\u001b[7;119Hgo:132\",\"time\":\"2022-04-11T08:03:08.89635684Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.973823, "o", "\u001b[H\u001b[Konnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":57,\"caller\":\"zotregistry.io/zot/pkg/api/session.g\r\n\u001b[K\u001b[1;119Hgo:132\",\"time\":\"2022-04-11T08:03:08.89635684Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34834\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[3;119HatusCode\":200,\"latency\":\"208.467µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[4;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[5;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[6;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":59,\"caller\":\"zotregistry.io/zot/pkg/api/session.g\r\n\u001b[K\u001b[7;119Hgo:132\",\"time\":\"2022-04-11T08:03:08.904254694Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.975111, "o", "\u001b[H\u001b[Kst.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[1;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[2;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":59,\"caller\":\"zotregistry.io/zot/pkg/api/session.g\r\n\u001b[K\u001b[3;119Hgo:132\",\"time\":\"2022-04-11T08:03:08.904254694Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34836\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[5;119HtusCode\":202,\"latency\":\"122.313µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"0\"],\"User-Agent\r\n\u001b[K\u001b[6;119Ht\":[\"Go-http-client/1.1\"]},\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:03:\r\n\u001b[K\u001b[7;119H:08.905685714Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.975762, "o", "\u001b[H\u001b[Konnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":59,\"caller\":\"zotregistry.io/zot/pkg/api/session.g\r\n\u001b[K\u001b[1;119Hgo:132\",\"time\":\"2022-04-11T08:03:08.904254694Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34836\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[3;119HtusCode\":202,\"latency\":\"122.313µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"0\"],\"User-Agent\r\n\u001b[K\u001b[4;119Ht\":[\"Go-http-client/1.1\"]},\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:03:\r\n\u001b[K\u001b[5;119H:08.905685714Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":1790,\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\""]
|
||||
[42.975886, "o", "2022\r\n\u001b[K\u001b[7;119H2-04-11T08:03:08.906436111Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[K08.905685714Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":1790,\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\"2022\r\n\u001b[K\u001b[2;119H2-04-11T08:03:08.906436111Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/abacb8d9-5726-42fb-803d-27cca2700488\",\"dstDigest\":\"sha256:db\r\n\u001b[K\u001b[4;119Hb9f7981635a786b9e9d3021da4723cee517f20273a6c8e9d21678605fd4751b\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/db9f79816\r\n\u001b[K\u001b[5;119H635a786b9e9d3021da4723cee517f20273a6c8e9d21678605fd4751b\",\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/storage/storag\r\n\u001b[K\u001b[6;119Hge_fs.go:1146\",\"time\":\"2022-04-11T08:03:08.906567992Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[7;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.976872, "o", "\u001b[H\u001b[K9f7981635a786b9e9d3021da4723cee517f20273a6c8e9d21678605fd4751b\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/db9f79816\r\n\u001b[K\u001b[1;119H635a786b9e9d3021da4723cee517f20273a6c8e9d21678605fd4751b\",\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/storage/storag\r\n\u001b[K\u001b[2;119Hge_fs.go:1146\",\"time\":\"2022-04-11T08:03:08.906567992Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[3;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/abacb8d9-5726-42fb-803d-27cca2700488\",\"dst\":\"/var/lib/regist\r\n\u001b[K\u001b[5;119Htry/busybox/blobs/sha256/db9f7981635a786b9e9d3021da4723cee517f20273a6c8e9d21678605fd4751b\",\"goroutine\":61,\"caller\":\"zotr\r\n\u001b[K\u001b[6;119Hregistry.io/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T08:0"]
|
||||
[42.977046, "o", "3:08.9075929Z\",\"caller\":\"zotregistry.io/zot/pkg/s\r\n\u001b[K\u001b[7;119Hstorage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[Kry/busybox/blobs/sha256/db9f7981635a786b9e9d3021da4723cee517f20273a6c8e9d21678605fd4751b\",\"goroutine\":61,\"caller\":\"zotr\r\n\u001b[K\u001b[1;119Hregistry.io/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T08:03:08.9075929Z\",\"caller\":\"zotregistry.io/zot/pkg/s\r\n\u001b[K\u001b[2;119Hstorage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34836\",\"method\":\"PUT\",\"path\":\"/v2/busybox/blobs/uploads/abacb8d9\r\n\u001b[K\u001b[4;119H9-5726-42fb-803d-27cca2700488?digest=sha256%3Adb9f7981635a786b9e9d3021da4723cee517f20273a6c8e9d21678605fd4751b\",\"statusC\r\n\u001b[K\u001b[5;119HCode\":201,\"latency\":\"1.234617ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"1790\"],\"Content-T\r\n\u001b[K\u001b[6;119HType\":[\"application/octet-stream\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/\r\n\u001b[K\u001b[7;119H/api/session.go:132\",\"time\":\"2022-0"]
|
||||
[42.965884, "o", "\u001b[H\u001b[KAgent\":[\"Go-http-client/1.1\"]},\"goroutine\":83,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[1;119H08:03:01.372412689Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34832\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[3;119HatusCode\":200,\"latency\":\"229.305µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[4;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[5;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[6;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/api/session.g\r\n\u001b[K\u001b[7;119Hgo:132\",\"time\":\"2022-04-11T08:03:08.89635684Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.973823, "o", "\u001b[H\u001b[Konnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":57,\"caller\":\"zotregistry.dev/zot/pkg/api/session.g\r\n\u001b[K\u001b[1;119Hgo:132\",\"time\":\"2022-04-11T08:03:08.89635684Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34834\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[3;119HatusCode\":200,\"latency\":\"208.467µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[4;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[5;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[6;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":59,\"caller\":\"zotregistry.dev/zot/pkg/api/session.g\r\n\u001b[K\u001b[7;119Hgo:132\",\"time\":\"2022-04-11T08:03:08.904254694Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.975111, "o", "\u001b[H\u001b[Kst.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[1;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[2;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":59,\"caller\":\"zotregistry.dev/zot/pkg/api/session.g\r\n\u001b[K\u001b[3;119Hgo:132\",\"time\":\"2022-04-11T08:03:08.904254694Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34836\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[5;119HtusCode\":202,\"latency\":\"122.313µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"0\"],\"User-Agent\r\n\u001b[K\u001b[6;119Ht\":[\"Go-http-client/1.1\"]},\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:03:\r\n\u001b[K\u001b[7;119H:08.905685714Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.975762, "o", "\u001b[H\u001b[Konnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":59,\"caller\":\"zotregistry.dev/zot/pkg/api/session.g\r\n\u001b[K\u001b[1;119Hgo:132\",\"time\":\"2022-04-11T08:03:08.904254694Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34836\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[3;119HtusCode\":202,\"latency\":\"122.313µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"0\"],\"User-Agent\r\n\u001b[K\u001b[4;119Ht\":[\"Go-http-client/1.1\"]},\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:03:\r\n\u001b[K\u001b[5;119H:08.905685714Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":1790,\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\""]
|
||||
[42.975886, "o", "2022\r\n\u001b[K\u001b[7;119H2-04-11T08:03:08.906436111Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[K08.905685714Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":1790,\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\"2022\r\n\u001b[K\u001b[2;119H2-04-11T08:03:08.906436111Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/abacb8d9-5726-42fb-803d-27cca2700488\",\"dstDigest\":\"sha256:db\r\n\u001b[K\u001b[4;119Hb9f7981635a786b9e9d3021da4723cee517f20273a6c8e9d21678605fd4751b\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/db9f79816\r\n\u001b[K\u001b[5;119H635a786b9e9d3021da4723cee517f20273a6c8e9d21678605fd4751b\",\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/storage/storag\r\n\u001b[K\u001b[6;119Hge_fs.go:1146\",\"time\":\"2022-04-11T08:03:08.906567992Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[7;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.976872, "o", "\u001b[H\u001b[K9f7981635a786b9e9d3021da4723cee517f20273a6c8e9d21678605fd4751b\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/db9f79816\r\n\u001b[K\u001b[1;119H635a786b9e9d3021da4723cee517f20273a6c8e9d21678605fd4751b\",\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/storage/storag\r\n\u001b[K\u001b[2;119Hge_fs.go:1146\",\"time\":\"2022-04-11T08:03:08.906567992Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[3;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/abacb8d9-5726-42fb-803d-27cca2700488\",\"dst\":\"/var/lib/regist\r\n\u001b[K\u001b[5;119Htry/busybox/blobs/sha256/db9f7981635a786b9e9d3021da4723cee517f20273a6c8e9d21678605fd4751b\",\"goroutine\":61,\"caller\":\"zotr\r\n\u001b[K\u001b[6;119Hregistry.dev/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T08:0"]
|
||||
[42.977046, "o", "3:08.9075929Z\",\"caller\":\"zotregistry.dev/zot/pkg/s\r\n\u001b[K\u001b[7;119Hstorage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[Kry/busybox/blobs/sha256/db9f7981635a786b9e9d3021da4723cee517f20273a6c8e9d21678605fd4751b\",\"goroutine\":61,\"caller\":\"zotr\r\n\u001b[K\u001b[1;119Hregistry.dev/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T08:03:08.9075929Z\",\"caller\":\"zotregistry.dev/zot/pkg/s\r\n\u001b[K\u001b[2;119Hstorage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34836\",\"method\":\"PUT\",\"path\":\"/v2/busybox/blobs/uploads/abacb8d9\r\n\u001b[K\u001b[4;119H9-5726-42fb-803d-27cca2700488?digest=sha256%3Adb9f7981635a786b9e9d3021da4723cee517f20273a6c8e9d21678605fd4751b\",\"statusC\r\n\u001b[K\u001b[5;119HCode\":201,\"latency\":\"1.234617ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"1790\"],\"Content-T\r\n\u001b[K\u001b[6;119HType\":[\"application/octet-stream\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/\r\n\u001b[K\u001b[7;119H/api/session.go:132\",\"time\":\"2022-0"]
|
||||
[42.977104, "o", "4-11T08:03:08.907635751Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.978169, "o", "\u001b[H\u001b[Kype\":[\"application/octet-stream\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/\r\n\u001b[K\u001b[1;119H/api/session.go:132\",\"time\":\"2022-04-11T08:03:08.907635751Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.90881319Z\",\"message\":\"GC: got refer\r\n\u001b[K\u001b[4;119Hrence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.908910405Z\",\"message\":\"GC: got refe\r\n\u001b[K\u001b[7;119He"]
|
||||
[42.978216, "o", "rence\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.90881319Z\",\"message\":\"GC: got refer\r\n\u001b[K\u001b[1;119Hrence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.908910405Z\",\"message\":\"GC: got refe\r\n\u001b[K\u001b[4;119Herence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.908984135Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[7;119H from root\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.978331, "o", "\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.908910405Z\",\"message\":\"GC: got refe\r\n\u001b[K\u001b[1;119Herence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.908984135Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[4;119H from root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037b"]
|
||||
[42.978377, "o", "aeb12fa2c5acb960182\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.909067143Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.978621, "o", "\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.908984135Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[1;119H from root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.909067143Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"name\":\"github.com/opencontainers/image-sp\r\n\u001b[K\u001b[6;119Hpec/specs-go::Versioned\",\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[7;119H08:03:08.909310686Z\",\"message\":\"detected jump outside permitted packages\"}"]
|
||||
[42.978685, "o", "\r\n\u001b[K\u001b[28B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.909067143Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"name\":\"github.com/opencontainers/image-sp\r\n\u001b[K\u001b[3;119Hpec/specs-go::Versioned\",\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[4;119H08:03:08.909310686Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.909422829Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.979128, "o", "\u001b[H\u001b[Kec/specs-go::Versioned\",\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[1;119H08:03:08.909310686Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.909422829Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"nam"]
|
||||
[42.97917, "o", "e\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":61,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.90974404Z\",\"message\":\"detected jump ou\r\n\u001b[K\u001b[7;119Hutside permi"]
|
||||
[42.979224, "o", "tted packages\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.909422829Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/"]
|
||||
[42.979236, "o", "specs-go/v1\",\"goroutine\":61,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.90974404Z\",\"message\":\"detected jump ou\r\n\u001b[K\u001b[4;119Hutside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":61,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.909891129Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside permitted packages\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.979393, "o", "\u001b[H\u001b[K\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.90974404Z\",\"message\":\"detected jump ou\r\n\u001b[K\u001b[1;119Hutside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":61,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.909891129Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path"]
|
||||
[42.979441, "o", "\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":61,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910015045Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside permitted packages\"}\r\n\u001b[K\u001b["]
|
||||
[42.97949, "o", "28B\u001b[H\u001b[K\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.909891129Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[1;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":61,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910015045Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:02611b"]
|
||||
[42.979581, "o", "034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910116728Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[K\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910015045Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[1;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"g"]
|
||||
[42.979618, "o", "oroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910116728Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3"]
|
||||
[42.979677, "o", "d348b9eb9ca7df\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910213422Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910116728Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/"]
|
||||
[42.979711, "o", "storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910213422Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08\r\n\u001b[K\u001b[6;119H8.910323852Z\",\"messa"]
|
||||
[42.979771, "o", "ge\":\"skipping walk into non-parseable media-type application/vnd.oci.image.layer.v1.tar+gzip of blob\r\n\u001b[K\u001b[7;119Hb sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910213422Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08\r\n\u001b[K\u001b[3;119H8.910323852Z\",\"message\":\"skipping w"]
|
||||
[42.978169, "o", "\u001b[H\u001b[Kype\":[\"application/octet-stream\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/\r\n\u001b[K\u001b[1;119H/api/session.go:132\",\"time\":\"2022-04-11T08:03:08.907635751Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.90881319Z\",\"message\":\"GC: got refer\r\n\u001b[K\u001b[4;119Hrence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.908910405Z\",\"message\":\"GC: got refe\r\n\u001b[K\u001b[7;119He"]
|
||||
[42.978216, "o", "rence\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.90881319Z\",\"message\":\"GC: got refer\r\n\u001b[K\u001b[1;119Hrence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.908910405Z\",\"message\":\"GC: got refe\r\n\u001b[K\u001b[4;119Herence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.908984135Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[7;119H from root\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.978331, "o", "\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.908910405Z\",\"message\":\"GC: got refe\r\n\u001b[K\u001b[1;119Herence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.908984135Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[4;119H from root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037b"]
|
||||
[42.978377, "o", "aeb12fa2c5acb960182\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.909067143Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.978621, "o", "\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.908984135Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[1;119H from root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.909067143Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"name\":\"github.com/opencontainers/image-sp\r\n\u001b[K\u001b[6;119Hpec/specs-go::Versioned\",\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[7;119H08:03:08.909310686Z\",\"message\":\"detected jump outside permitted packages\"}"]
|
||||
[42.978685, "o", "\r\n\u001b[K\u001b[28B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.909067143Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"name\":\"github.com/opencontainers/image-sp\r\n\u001b[K\u001b[3;119Hpec/specs-go::Versioned\",\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[4;119H08:03:08.909310686Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.909422829Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.979128, "o", "\u001b[H\u001b[Kec/specs-go::Versioned\",\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T0\r\n\u001b[K\u001b[1;119H08:03:08.909310686Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.909422829Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"nam"]
|
||||
[42.97917, "o", "e\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":61,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.90974404Z\",\"message\":\"detected jump ou\r\n\u001b[K\u001b[7;119Hutside permi"]
|
||||
[42.979224, "o", "tted packages\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.909422829Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/"]
|
||||
[42.979236, "o", "specs-go/v1\",\"goroutine\":61,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.90974404Z\",\"message\":\"detected jump ou\r\n\u001b[K\u001b[4;119Hutside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":61,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.909891129Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside permitted packages\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.979393, "o", "\u001b[H\u001b[K\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.90974404Z\",\"message\":\"detected jump ou\r\n\u001b[K\u001b[1;119Hutside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":61,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.909891129Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path"]
|
||||
[42.979441, "o", "\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":61,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910015045Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119Houtside permitted packages\"}\r\n\u001b[K\u001b["]
|
||||
[42.97949, "o", "28B\u001b[H\u001b[K\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.909891129Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[1;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":61,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910015045Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:02611b"]
|
||||
[42.979581, "o", "034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910116728Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[K\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910015045Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[1;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"g"]
|
||||
[42.979618, "o", "oroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910116728Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3"]
|
||||
[42.979677, "o", "d348b9eb9ca7df\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910213422Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910116728Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/"]
|
||||
[42.979711, "o", "storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910213422Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08\r\n\u001b[K\u001b[6;119H8.910323852Z\",\"messa"]
|
||||
[42.979771, "o", "ge\":\"skipping walk into non-parseable media-type application/vnd.oci.image.layer.v1.tar+gzip of blob\r\n\u001b[K\u001b[7;119Hb sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910213422Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08\r\n\u001b[K\u001b[3;119H8.910323852Z\",\"message\":\"skipping w"]
|
||||
[42.979782, "o", "alk into non-parseable media-type application/vnd.oci.image.layer.v1.tar+gzip of blob\r\n\u001b[K\u001b[4;119Hb sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19"]
|
||||
[42.979864, "o", "f270b3d348b9eb9ca7df\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910419764Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[K.910323852Z\",\"message\":\"skipping walk into non-pa"]
|
||||
[42.979873, "o", "rseable media-type application/vnd.oci.image.layer.v1.tar+gzip of blob\r\n\u001b[K\u001b[1;119Hb sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910419764Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335"]
|
||||
[42.979982, "o", "037baeb12fa2c5acb960182\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910510968Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910510968Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg"]
|
||||
[42.979864, "o", "f270b3d348b9eb9ca7df\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910419764Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[K.910323852Z\",\"message\":\"skipping walk into non-pa"]
|
||||
[42.979873, "o", "rseable media-type application/vnd.oci.image.layer.v1.tar+gzip of blob\r\n\u001b[K\u001b[1;119Hb sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910419764Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335"]
|
||||
[42.979982, "o", "037baeb12fa2c5acb960182\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910510968Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910510968Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg"]
|
||||
[42.97999, "o", "/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910597131Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[4;119H from root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hlle"]
|
||||
[42.980098, "o", "r\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910695027Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910597131Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[1;119H from root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910695027Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08\r\n\u001b[K\u001b[6;119H8.910792433Z\",\"message\":\"skipping walk into non-parseable media"]
|
||||
[42.980181, "o", "-type application/vnd.cncf.oras.artifact.manifest.v1+json\r\n\u001b[K\u001b[7;119Hn of blob sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910"]
|
||||
[42.980213, "o", "695027Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08\r\n\u001b[K\u001b[3;119H8.910792433Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.cncf.oras.artifact.manifest.v1+json\r\n\u001b[K\u001b[4;119Hn of blob sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910884808Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.980439, "o", "\u001b[H\u001b[K.910792433Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.cncf.oras.artifact.manifest.v1+json\r\n\u001b[K\u001b[1;119Hn of blob sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910884808Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08\r\n\u001b[K\u001b[6;119H8.911091311Z\",\"message\":\"skipping garbage collection of blob sha256:db9f7981635a786b9e9d3021da4723cee517f20273a6c8e9d216\r\n\u001b[K\u001b[7;119H678"]
|
||||
[42.980525, "o", "605fd4751b because of policy 0\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[1;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T"]
|
||||
[42.980534, "o", "08:03:08.910884808Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[2;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08\r\n\u001b[K\u001b[4;119H8.911091311Z\",\"message\":\"skipping garbage collection of bl"]
|
||||
[42.980565, "o", "ob sha256:db9f7981635a786b9e9d3021da4723cee517f20273a6c8e9d216\r\n\u001b[K\u001b[5;119H678605fd4751b because of policy 0\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08\r\n\u001b[K\u001b[7;119H8.9112252"]
|
||||
[42.980667, "o", "96Z\",\"message\":\"garbage collected 0 blobs\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[K78605fd4751b because of policy 0\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08\r\n\u001b[K\u001b[2;119H8.911225296Z\",\"message\":\"g"]
|
||||
[42.980098, "o", "r\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910695027Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910597131Z\",\"message\":\"GC: marking \r\n\u001b[K\u001b[1;119H from root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910695027Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08\r\n\u001b[K\u001b[6;119H8.910792433Z\",\"message\":\"skipping walk into non-parseable media"]
|
||||
[42.980181, "o", "-type application/vnd.cncf.oras.artifact.manifest.v1+json\r\n\u001b[K\u001b[7;119Hn of blob sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910"]
|
||||
[42.980213, "o", "695027Z\",\"message\":\"-> ws.recurs\r\n\u001b[K\u001b[1;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08\r\n\u001b[K\u001b[3;119H8.910792433Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.cncf.oras.artifact.manifest.v1+json\r\n\u001b[K\u001b[4;119Hn of blob sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910884808Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[28B"]
|
||||
[42.980439, "o", "\u001b[H\u001b[K.910792433Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.cncf.oras.artifact.manifest.v1+json\r\n\u001b[K\u001b[1;119Hn of blob sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08.910884808Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08\r\n\u001b[K\u001b[6;119H8.911091311Z\",\"message\":\"skipping garbage collection of blob sha256:db9f7981635a786b9e9d3021da4723cee517f20273a6c8e9d216\r\n\u001b[K\u001b[7;119H678"]
|
||||
[42.980525, "o", "605fd4751b because of policy 0\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:e3bd8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"goroutine\":61,\"cal\r\n\u001b[K\u001b[1;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T"]
|
||||
[42.980534, "o", "08:03:08.910884808Z\",\"message\":\"<- ws.recurs\r\n\u001b[K\u001b[2;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08\r\n\u001b[K\u001b[4;119H8.911091311Z\",\"message\":\"skipping garbage collection of bl"]
|
||||
[42.980565, "o", "ob sha256:db9f7981635a786b9e9d3021da4723cee517f20273a6c8e9d216\r\n\u001b[K\u001b[5;119H678605fd4751b because of policy 0\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08\r\n\u001b[K\u001b[7;119H8.9112252"]
|
||||
[42.980667, "o", "96Z\",\"message\":\"garbage collected 0 blobs\"}\r\n\u001b[K\u001b[28B\u001b[H\u001b[K78605fd4751b because of policy 0\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T08:03:08\r\n\u001b[K\u001b[2;119H8.911225296Z\",\"message\":\"g"]
|
||||
[42.980698, "o", "arbage collected 0 blobs\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34836\",\"method\":\"PUT\",\"path\":\"/v2/busybox/manifests/sha256:e3bd8\r\n\u001b[K\u001b[4;119H8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"statusCode\":201,\"latency\":\"3.120372ms\",\"bodySize\":0,\"head\r\n\u001b[K\u001b[5;119Hders\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"431\"],\"Content-Type\":[\"application/vnd.cncf.oras.artifact.manifest.\r\n\u001b[K\u001b[6;119H.v1+json\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":61,\"caller\":\"zotregistr"]
|
||||
[42.980852, "o", "y.io/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[7;119Hme\":\"2022-04-11T08:03:08.911315026Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B\u001b[26A\u001b[Ksybox:latest\r\n\u001b[KGetting image source signatures\r\n\u001b[KCopying blob 554879bb3004 done\r\n\u001b[KCopying config 02611b034a done\r\n\u001b[KWriting manifest to image destination\r\n\u001b[KStoring signatures\r\n\u001b[K$\b\n\u001b[K$ export IMAGE=localhost:5000/busybox:latest\r\n\u001b[K$\b\n\u001b[K$ notation cert generate-test --default --trust \"zot-demo\"\r\n\u001b[Kgenerating RSA Key with 2048 bits\r\n\u001b[Kgenerated certificates expiring on 2023-04-11T08:02:48Z\r\n\u001b[Kwrote key: /home/ram/.config/notation/key/zot-demo.key\r\n\u001b[Kwrote certificate: /home/ram/.config/notation/certificate/zot-demo.crt\r\n\u001b[Kzot-demo: added to the key list\r\n\u001b[Kzot-demo: marked as default\r\n\u001b[Kzot-demo: added to the certifi"]
|
||||
[42.980852, "o", "y.dev/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[7;119Hme\":\"2022-04-11T08:03:08.911315026Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B\u001b[26A\u001b[Ksybox:latest\r\n\u001b[KGetting image source signatures\r\n\u001b[KCopying blob 554879bb3004 done\r\n\u001b[KCopying config 02611b034a done\r\n\u001b[KWriting manifest to image destination\r\n\u001b[KStoring signatures\r\n\u001b[K$\b\n\u001b[K$ export IMAGE=localhost:5000/busybox:latest\r\n\u001b[K$\b\n\u001b[K$ notation cert generate-test --default --trust \"zot-demo\"\r\n\u001b[Kgenerating RSA Key with 2048 bits\r\n\u001b[Kgenerated certificates expiring on 2023-04-11T08:02:48Z\r\n\u001b[Kwrote key: /home/ram/.config/notation/key/zot-demo.key\r\n\u001b[Kwrote certificate: /home/ram/.config/notation/certificate/zot-demo.crt\r\n\u001b[Kzot-demo: added to the key list\r\n\u001b[Kzot-demo: marked as default\r\n\u001b[Kzot-demo: added to the certifi"]
|
||||
[42.980893, "o", "cate list\r\n\u001b[K$\b\n\u001b[K$ notation list --plain-http $IMAGE\r\n\u001b[K2022/04/11 01:02:55 lookup signature failure: failed to lookup signatures: 400 Bad Request\r\n\u001b[K$\b\n\u001b[K$ notation verify --plain-http $IMAGE\r\n\u001b[K2022/04/11 01:03:01 lookup signature failure: failed to lookup signatures: 400 Bad Request\r\n\u001b[K$\b\n\u001b[K$ notation sign --plain-http $IMAGE\r\n\u001b[Ksha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\r\n\u001b[K"]
|
||||
[42.981433, "o", "$ "]
|
||||
[44.052387, "i", "\r"]
|
||||
|
@ -168,11 +168,11 @@
|
|||
[48.582591, "i", "\r"]
|
||||
[48.58355, "o", "\r\u001b[26A\u001b[KCopying blob 554879bb3004 done\r\n\u001b[KCopying config 02611b034a done\r\n\u001b[KWriting manifest to image destination\r\n\u001b[KStoring signatures\r\n\u001b[K$\b\n\u001b[K$ export IMAGE=localhost:5000/busybox:latest\r\n\u001b[K$\b\n\u001b[K$ notation cert generate-test --default --trust \"zot-demo\"\r\n\u001b[Kgenerating RSA Key with 2048 bits\r\n\u001b[Kgenerated certificates expiring on 2023-04-11T08:02:48Z\r\n\u001b[Kwrote key: /home/ram/.config/notation/key/zot-demo.key\r\n\u001b[Kwrote certificate: /home/ram/.config/notation/certificate/zot-demo.crt\r\n\u001b[Kzot-demo: added to the key list\r\n\u001b[Kzot-demo: marked as default\r\n\u001b[Kzot-demo: added to the certificate list\r\n\u001b[K$\b\n\u001b[K$ notation list --plain-http $IMAGE\r\n\u001b[K2022/04/11 01:02:55 lookup signature failure: failed to lookup signatures: 400 Bad Request\r\n\u001b[K$\b\n\u001b[K$ notation verify --plain-http $IMAGE\r\n\u001b[K2022/04/11 01:03:01 lookup signature failure: failed to lookup signatures: 400 Bad Request\r\n\u001b[K$\b\n\u001b[K$ notation sign --plain-http $IMAGE\r\n\u001b[Ksha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\r\n\u001b[K$\b\n\u001b[K"]
|
||||
[48.583683, "o", "$ notation list --plain-http $IMAGE\r\n\u001b[K"]
|
||||
[48.594453, "o", "\u001b[H\u001b[Kv1+json\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":61,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[1;119Hme\":\"2022-04-11T08:03:08.911315026Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34838\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[3;119HatusCode\":200,\"latency\":\"238.744µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[4;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[5;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[6;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":63,\"caller\":\"zotregistry.io/zot/pkg/api/session.g\r\n\u001b[K\u001b[7;119Hgo:132\",\"time\":\"2022-04-11T08:03:14.524722538Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[48.596298, "o", "\u001b[H\u001b[KtusCode\":200,\"latency\":\"238.744µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[1;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[2;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[3;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":63,\"caller\":\"zotregistry.io/zot/pkg/api/session.g\r\n\u001b[K\u001b[4;119Hgo:132\",\"time\":\"2022-04-11T08:03:14.524722538Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"artifactType\":\"appl\r\n\u001b[K\u001b[6;119Hlication/vnd.cncf.notary.v2.signature\",\"goroutine\":85,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1428\",\"time\":\"2022-\r\n\u001b[K\u001b[7;119H-04-11T08:03:14.526655592Z\",\"message\":\"getting manifest\"}\r\n\u001b[K\u001b[28B"]
|
||||
[48.596774, "o", "\u001b[H\u001b[K{\"level\":\"info\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"artifactType\":\"appl\r\n\u001b[K\u001b[1;119Hlication/vnd.cncf.notary.v2.signature\",\"goroutine\":85,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1428\",\"time\":\"2022-\r\n\u001b[K\u001b[2;119H-04-11T08:03:14.526655592Z\",\"message\":\"getting manifest\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34840\",\"method\":\"GET\",\"path\":\"/oras/artifacts/v1/busybox/manifes\r\n\u001b[K\u001b[4;119Hsts/sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182/referrers?artifactType=application%2Fvnd.cnc\r\n\u001b[K\u001b[5;119Hcf.notary.v2.signature\",\"statusCode\":200,\"latency\":\"641.92µs\",\"bodySize\":236,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User\r\n\u001b[K\u001b[6;119Hr-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":85,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T\r\n\u001b[K\u001b[7;119HT08:03:14.527249832Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[48.597941, "o", "\u001b[H\u001b[Kf.notary.v2.signature\",\"statusCode\":200,\"latency\":\"641.92µs\",\"bodySize\":236,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User\r\n\u001b[K\u001b[1;119Hr-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":85,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T\r\n\u001b[K\u001b[2;119HT08:03:14.527249832Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34840\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/sha256:e3bd8\r\n\u001b[K\u001b[4;119H8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"statusCode\":200,\"latency\":\"172.688µs\",\"bodySize\":431,\"hea\r\n\u001b[K\u001b[5;119Haders\":{\"Accept\":[\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"Go-ht\r\n\u001b[K\u001b[6;119Http-client/1.1\"]},\"goroutine\":85,\"caller\":\"zotreg"]
|
||||
[48.598167, "o", "istry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:03:14.528374\r\n\u001b[K\u001b[7;119H475Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B\u001b[26A\u001b[KCopying config 02611b034a done\r\n\u001b[KWriting manifest to image destination\r\n\u001b[KStoring signatures\r\n\u001b[K$\b\n\u001b[K$ export IMAGE=localhost:5000/busybox:latest\r\n\u001b[K$\b\n\u001b[K$ notation cert generate-test --default --trust \"zot-demo\"\r\n\u001b[Kgenerating RSA Key with 2048 bits\r\n\u001b[Kgenerated certificates expiring on 2023-04-11T08:02:48Z\r\n\u001b[Kwrote key: /home/ram/.config/notation/key/zot-demo.key\r\n\u001b[Kwr"]
|
||||
[48.594453, "o", "\u001b[H\u001b[Kv1+json\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":61,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[1;119Hme\":\"2022-04-11T08:03:08.911315026Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34838\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[3;119HatusCode\":200,\"latency\":\"238.744µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[4;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[5;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[6;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":63,\"caller\":\"zotregistry.dev/zot/pkg/api/session.g\r\n\u001b[K\u001b[7;119Hgo:132\",\"time\":\"2022-04-11T08:03:14.524722538Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[48.596298, "o", "\u001b[H\u001b[KtusCode\":200,\"latency\":\"238.744µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[1;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[2;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[3;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":63,\"caller\":\"zotregistry.dev/zot/pkg/api/session.g\r\n\u001b[K\u001b[4;119Hgo:132\",\"time\":\"2022-04-11T08:03:14.524722538Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"artifactType\":\"appl\r\n\u001b[K\u001b[6;119Hlication/vnd.cncf.notary.v2.signature\",\"goroutine\":85,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1428\",\"time\":\"2022-\r\n\u001b[K\u001b[7;119H-04-11T08:03:14.526655592Z\",\"message\":\"getting manifest\"}\r\n\u001b[K\u001b[28B"]
|
||||
[48.596774, "o", "\u001b[H\u001b[K{\"level\":\"info\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"artifactType\":\"appl\r\n\u001b[K\u001b[1;119Hlication/vnd.cncf.notary.v2.signature\",\"goroutine\":85,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1428\",\"time\":\"2022-\r\n\u001b[K\u001b[2;119H-04-11T08:03:14.526655592Z\",\"message\":\"getting manifest\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34840\",\"method\":\"GET\",\"path\":\"/oras/artifacts/v1/busybox/manifes\r\n\u001b[K\u001b[4;119Hsts/sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182/referrers?artifactType=application%2Fvnd.cnc\r\n\u001b[K\u001b[5;119Hcf.notary.v2.signature\",\"statusCode\":200,\"latency\":\"641.92µs\",\"bodySize\":236,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User\r\n\u001b[K\u001b[6;119Hr-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":85,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T\r\n\u001b[K\u001b[7;119HT08:03:14.527249832Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[48.597941, "o", "\u001b[H\u001b[Kf.notary.v2.signature\",\"statusCode\":200,\"latency\":\"641.92µs\",\"bodySize\":236,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"User\r\n\u001b[K\u001b[1;119Hr-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":85,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T\r\n\u001b[K\u001b[2;119HT08:03:14.527249832Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34840\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/sha256:e3bd8\r\n\u001b[K\u001b[4;119H8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"statusCode\":200,\"latency\":\"172.688µs\",\"bodySize\":431,\"hea\r\n\u001b[K\u001b[5;119Haders\":{\"Accept\":[\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"Go-ht\r\n\u001b[K\u001b[6;119Http-client/1.1\"]},\"goroutine\":85,\"caller\":\"zotreg"]
|
||||
[48.598167, "o", "istry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:03:14.528374\r\n\u001b[K\u001b[7;119H475Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B\u001b[26A\u001b[KCopying config 02611b034a done\r\n\u001b[KWriting manifest to image destination\r\n\u001b[KStoring signatures\r\n\u001b[K$\b\n\u001b[K$ export IMAGE=localhost:5000/busybox:latest\r\n\u001b[K$\b\n\u001b[K$ notation cert generate-test --default --trust \"zot-demo\"\r\n\u001b[Kgenerating RSA Key with 2048 bits\r\n\u001b[Kgenerated certificates expiring on 2023-04-11T08:02:48Z\r\n\u001b[Kwrote key: /home/ram/.config/notation/key/zot-demo.key\r\n\u001b[Kwr"]
|
||||
[48.598222, "o", "ote certificate: /home/ram/.config/notation/certificate/zot-demo.crt\r\n\u001b[Kzot-demo: added to the key list\r\n\u001b[Kzot-demo: marked as default\r\n\u001b[Kzot-demo: added to the certificate list\r\n\u001b[K$\b\n\u001b[K$ notation list --plain-http $IMAGE\r\n\u001b[K2022/04/11 01:02:55 lookup signature failure: failed to lookup signatures: 400 Bad Request\r\n\u001b[K$\b\n\u001b[K$ notation verify --plain-http $IMAGE\r\n\u001b[K2022/04/11 01:03:01 lookup signature failure: failed to lookup signatures: 400 Bad Request\r\n\u001b[K$\b\n\u001b[K$ notation sign --plain-http $IMAGE\r\n\u001b[Ksha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\r\n\u001b[K$\b\n\u001b[K$ notation list --plain-http $IMAGE\r\n\u001b[Ksha256:db9f7981635a786b9e9d3021da4723cee517f20273a6c8e9d21678605fd4751b\r\n\u001b[K"]
|
||||
[48.598744, "o", "$ "]
|
||||
[49.238592, "i", "\r"]
|
||||
|
@ -183,11 +183,11 @@
|
|||
[53.507294, "i", "\r"]
|
||||
[53.508576, "o", "\r\u001b[26A\u001b[KStoring signatures\r\n\u001b[K$\b\n\u001b[K$ export IMAGE=localhost:5000/busybox:latest\r\n\u001b[K$\b\n\u001b[K$ notation cert generate-test --default --trust \"zot-demo\"\r\n\u001b[Kgenerating RSA Key with 2048 bits\r\n\u001b[Kgenerated certificates expiring on 2023-04-11T08:02:48Z\r\n\u001b[Kwrote key: /home/ram/.config/notation/key/zot-demo.key\r\n\u001b[Kwrote certificate: /home/ram/.config/notation/certificate/zot-demo.crt\r\n\u001b[Kzot-demo: added to the key list\r\n\u001b[Kzot-demo: marked as default\r\n\u001b[Kzot-demo: added to the certificate list\r\n\u001b[K$\b\n\u001b[K$ notation list --plain-http $IMAGE\r\n\u001b[K2022/04/11 01:02:55 lookup signature failure: failed to lookup signatures: 400 Bad Request\r\n\u001b[K$\b\n\u001b[K$ notation verify --plain-http $IMAGE\r\n\u001b[K2022/04/11 01:03:01 lookup signature failure: failed to lookup signatures: 400 Bad Request\r\n\u001b[K$\b\n\u001b[K$ notation sign --plain-http $IMAGE\r\n\u001b[Ksha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\r\n\u001b[K$\b\n\u001b[K$ notation list --plain-http $IMAGE\r\n\u001b[Ksha256:db9f7981635a786b9e9d3021da4723cee517f20273a6c8e9d21678605fd4751b\r"]
|
||||
[53.509169, "o", "\n\u001b[K$\b\n\u001b[K$ notation verify --plain-http $IMAGE\r\n\u001b[K"]
|
||||
[53.518538, "o", "\u001b[H\u001b[Ktp-client/1.1\"]},\"goroutine\":85,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:03:14.528374\r\n\u001b[K\u001b[1;119H475Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34842\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[3;119HatusCode\":200,\"latency\":\"196.283µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[4;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[5;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[6;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":99,\"caller\":\"zotregistry.io/zot/pkg/api/session.g\r\n\u001b[K\u001b[7;119Hgo:132\",\"time\":\"2022-04-11T08:03:19.448934351Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[53.519906, "o", "\u001b[H\u001b[KtusCode\":200,\"latency\":\"196.283µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[1;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[2;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[3;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":99,\"caller\":\"zotregistry.io/zot/pkg/api/session.g\r\n\u001b[K\u001b[4;119Hgo:132\",\"time\":\"2022-04-11T08:03:19.448934351Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"artifactType\":\"appl\r\n\u001b[K\u001b[6;119Hlication/vnd.cncf.notary.v2.signature\",\"goroutine\":87,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1428\",\"time\":\"2022-\r\n\u001b[K\u001b[7;119H-04-11T08:03:19.450495568Z\",\"message\":\"getting manifest\"}\r\n\u001b[K\u001b[28B"]
|
||||
[53.520262, "o", "\u001b[H\u001b[K{\"level\":\"info\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"artifactType\":\"appl\r\n\u001b[K\u001b[1;119Hlication/vnd.cncf.notary.v2.signature\",\"goroutine\":87,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1428\",\"time\":\"2022-\r\n\u001b[K\u001b[2;119H-04-11T08:03:19.450495568Z\",\"message\":\"getting manifest\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34844\",\"method\":\"GET\",\"path\":\"/oras/artifacts/v1/busybox/manifes\r\n\u001b[K\u001b[4;119Hsts/sha256:d11abb379758784ce3c263c2fe3eabe6baf6"]
|
||||
[53.520317, "o", "29335037baeb12fa2c5acb960182/referrers?artifactType=application%2Fvnd.cnc\r\n\u001b[K\u001b[5;119Hcf.notary.v2.signature\",\"statusCode\":200,\"latency\":\"374.812µs\",\"bodySize\":236,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Use\r\n\u001b[K\u001b[6;119Her-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":87,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11\r\n\u001b[K\u001b[7;119H1T08:03:19.450795598Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[53.521181, "o", "\u001b[H\u001b[Kf.notary.v2.signature\",\"statusCode\":200,\"latency\":\"374.812µs\",\"bodySize\":236,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Use\r\n\u001b[K\u001b[1;119Her-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":87,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11\r\n\u001b[K\u001b[2;119H1T08:03:19.450795598Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34844\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/sha256:e3bd8\r\n\u001b[K\u001b[4;119H8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"statusCode\":200,\"latency\":\"113.796µs\",\"bodySize\":431,\"hea\r\n\u001b[K\u001b[5;119Haders\":{\"Accept\":[\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"Go-ht\r\n\u001b[K\u001b[6;119Http-client/1.1\"]},\"goroutine\":87,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:03:19.451774\r\n\u001b[K\u001b[7;119H4298Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[53.518538, "o", "\u001b[H\u001b[Ktp-client/1.1\"]},\"goroutine\":85,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:03:14.528374\r\n\u001b[K\u001b[1;119H475Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34842\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[3;119HatusCode\":200,\"latency\":\"196.283µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[4;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[5;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[6;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":99,\"caller\":\"zotregistry.dev/zot/pkg/api/session.g\r\n\u001b[K\u001b[7;119Hgo:132\",\"time\":\"2022-04-11T08:03:19.448934351Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[53.519906, "o", "\u001b[H\u001b[KtusCode\":200,\"latency\":\"196.283µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.li\r\n\u001b[K\u001b[1;119Hist.v2+json\",\"application/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.oci.image.index.v1+json\",\"applicati\r\n\u001b[K\u001b[2;119Hion/vnd.oci.image.manifest.v1+json\",\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"C\r\n\u001b[K\u001b[3;119HConnection\":[\"close\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":99,\"caller\":\"zotregistry.dev/zot/pkg/api/session.g\r\n\u001b[K\u001b[4;119Hgo:132\",\"time\":\"2022-04-11T08:03:19.448934351Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"artifactType\":\"appl\r\n\u001b[K\u001b[6;119Hlication/vnd.cncf.notary.v2.signature\",\"goroutine\":87,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1428\",\"time\":\"2022-\r\n\u001b[K\u001b[7;119H-04-11T08:03:19.450495568Z\",\"message\":\"getting manifest\"}\r\n\u001b[K\u001b[28B"]
|
||||
[53.520262, "o", "\u001b[H\u001b[K{\"level\":\"info\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"artifactType\":\"appl\r\n\u001b[K\u001b[1;119Hlication/vnd.cncf.notary.v2.signature\",\"goroutine\":87,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1428\",\"time\":\"2022-\r\n\u001b[K\u001b[2;119H-04-11T08:03:19.450495568Z\",\"message\":\"getting manifest\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34844\",\"method\":\"GET\",\"path\":\"/oras/artifacts/v1/busybox/manifes\r\n\u001b[K\u001b[4;119Hsts/sha256:d11abb379758784ce3c263c2fe3eabe6baf6"]
|
||||
[53.520317, "o", "29335037baeb12fa2c5acb960182/referrers?artifactType=application%2Fvnd.cnc\r\n\u001b[K\u001b[5;119Hcf.notary.v2.signature\",\"statusCode\":200,\"latency\":\"374.812µs\",\"bodySize\":236,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Use\r\n\u001b[K\u001b[6;119Her-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":87,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11\r\n\u001b[K\u001b[7;119H1T08:03:19.450795598Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[53.521181, "o", "\u001b[H\u001b[Kf.notary.v2.signature\",\"statusCode\":200,\"latency\":\"374.812µs\",\"bodySize\":236,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Use\r\n\u001b[K\u001b[1;119Her-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":87,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11\r\n\u001b[K\u001b[2;119H1T08:03:19.450795598Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34844\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/sha256:e3bd8\r\n\u001b[K\u001b[4;119H8c4fe856a62722b1ad0c0040e5fad79071f6c939bb813cf046446b248e2b\",\"statusCode\":200,\"latency\":\"113.796µs\",\"bodySize\":431,\"hea\r\n\u001b[K\u001b[5;119Haders\":{\"Accept\":[\"application/vnd.cncf.oras.artifact.manifest.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"Go-ht\r\n\u001b[K\u001b[6;119Http-client/1.1\"]},\"goroutine\":87,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T08:03:19.451774\r\n\u001b[K\u001b[7;119H4298Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[28B"]
|
||||
[53.522039, "o", "\u001b[26A\u001b[K$\b\n\u001b[K$ export IMAGE=localhost:5000/busybox:latest\r\n\u001b[K$\b\n\u001b[K$ notation cert generate-test --default --trust \"zot-demo\"\r\n\u001b[Kgenerating RSA Key with 2048 bits\r\n\u001b[Kgenerated certificates expiring on 2023-04-11T08:02:48Z\r\n\u001b[Kwrote key: /home/ram/.config/notation/key/zot-demo.key\r\n\u001b[Kwrote certificate: /home/ram/.config/notation/certificate/zot-demo.crt\r\n\u001b[Kzot-demo: added to the key list\r\n\u001b[Kzot-demo: marked as default\r\n\u001b[Kzot-demo: added to the certificate list\r\n\u001b[K$\b\n\u001b[K$ notation list --plain-http $"]
|
||||
[53.522089, "o", "IMAGE\r\n\u001b[K2022/04/11 01:02:55 lookup signature failure: failed to lookup signatures: 400 Bad Request\r\n\u001b[K$\b\n\u001b[K$ notation verify --plain-http $IMAGE\r\n\u001b[K2022/04/11 01:03:01 lookup signature failure: failed to lookup signatures: 400 Bad Request\r\n\u001b[K$\b\n\u001b[K$ notation sign --plain-http $IMAGE\r\n\u001b[Ksha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\r\n\u001b[K$\b\n\u001b[K$ notation list --plain-http $IMAGE\r\n\u001b[Ksha256:db9f7981635a786b9e9d3021da4723cee517f20273a6c8e9d21678605fd4751b\r\n\u001b[K$\b\n\u001b[K$ notation verify --plain-http $IMAGE\r\n\u001b[Ksha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\r\n\u001b[K"]
|
||||
[53.522428, "o", "$ "]
|
||||
|
|
Before Width: | Height: | Size: 230 KiB After Width: | Height: | Size: 230 KiB |
|
@ -9,7 +9,7 @@
|
|||
[1.250767, "o", "\r\u001b[32m$\b\n\u001b[39m \b"]
|
||||
[1.612879, "i", "\r"]
|
||||
[1.613061, "o", "\n \b"]
|
||||
[1.648533, "o", "\u001b[H\u001b[K{\"level\":\"info\",\"params\":{\"Version\":\"1.0.0-dev\",\"GoVersion\":\"go1.17.5\",\"Commit\":\"v1.3.8-rc3-38a110314ba3af67f970ed0ac90\r\n\u001b[K\u001b[1;119H09102edf7208d3\",\"BinaryType\":\"extended\",\"AccessControl\":null,\"Storage\":{\"Dedupe\":true,\"GC\":true,\"Commit\":false,\"GCDelay\"\r\n\u001b[K\u001b[2;119H\":3600000000000,\"RootDirectory\":\"/var/lib/registry\",\"StorageDriver\":null,\"SubPaths\":null},\"HTTP\":{\"Address\":\"0.0.0.0\",\"P\r\n\u001b[K\u001b[3;119HPort\":\"5000\",\"TLS\":null,\"Auth\":null,\"RawAccessControl\":null,\"Realm\":\"\",\"AllowReadAccess\":false,\"ReadOnly\":false,\"Ratelim\r\n\u001b[K\u001b[4;119Hmit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.io/zot/\r\n\u001b[K\u001b[5;119H/pkg/api/controller.go:103\",\"time\":\"2022-04-11T07:37:48.892014192Z\",\"message\":\"configuration settings\"}\r\n\u001b[K{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"max. inotify watches\":\"2147483647\",\"goroutine\":1,\"caller\":\"zotregis\r\n\u001b[K\u001b[7;119Hstry.io/zot/pkg/api/controller.go:91\",\"time\":\"2022-04-11T07:37:48.892094614Z\",\"message\":\"runtime params\"}\r\n\u001b[K"]
|
||||
[1.648533, "o", "\u001b[H\u001b[K{\"level\":\"info\",\"params\":{\"Version\":\"1.0.0-dev\",\"GoVersion\":\"go1.17.5\",\"Commit\":\"v1.3.8-rc3-38a110314ba3af67f970ed0ac90\r\n\u001b[K\u001b[1;119H09102edf7208d3\",\"BinaryType\":\"extended\",\"AccessControl\":null,\"Storage\":{\"Dedupe\":true,\"GC\":true,\"Commit\":false,\"GCDelay\"\r\n\u001b[K\u001b[2;119H\":3600000000000,\"RootDirectory\":\"/var/lib/registry\",\"StorageDriver\":null,\"SubPaths\":null},\"HTTP\":{\"Address\":\"0.0.0.0\",\"P\r\n\u001b[K\u001b[3;119HPort\":\"5000\",\"TLS\":null,\"Auth\":null,\"RawAccessControl\":null,\"Realm\":\"\",\"AllowReadAccess\":false,\"ReadOnly\":false,\"Ratelim\r\n\u001b[K\u001b[4;119Hmit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.dev/zot/\r\n\u001b[K\u001b[5;119H/pkg/api/controller.go:103\",\"time\":\"2022-04-11T07:37:48.892014192Z\",\"message\":\"configuration settings\"}\r\n\u001b[K{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"max. inotify watches\":\"2147483647\",\"goroutine\":1,\"caller\":\"zotregis\r\n\u001b[K\u001b[7;119Hstry.dev/zot/pkg/api/controller.go:91\",\"time\":\"2022-04-11T07:37:48.892094614Z\",\"message\":\"runtime params\"}\r\n\u001b[K"]
|
||||
[7.714909, "i", "\u0001"]
|
||||
[7.933101, "i", "\t"]
|
||||
[7.933523, "o", " \n\n"]
|
||||
|
@ -31,35 +31,35 @@
|
|||
[17.520693, "o", "Uploading a948904f2f0f artifact.txt\r\n \b\u001b[33m\u001b[39m\u001b[33m\u001b[39m\u001b[33m\u001b[39m\u001b[33m\u001b[39m\u001b[9A\u001b[K$\b\n\u001b[K$ echo \"{\\\"name\\\":\\\"foo\\\",\\\"value\\\":\\\"bar\\\"}\" > config.json\r\n\u001b[K$\b\n\u001b[K$ echo \"hello world\" > artifact.txt\r\n\u001b[K$\b\n\u001b[K$ oras push localhost:5000/hello-artifact:v2 --manifest-config config.json:application/vnd.acme.rocket.config.v1+json a\r\n\u001b[K\u001b[16;119Hartifact.txt:text/plain -v\r\n\u001b[KPreparing artifact.txt\r\n\u001b[KUploading a948904f2f0f artifact.txt\r\n\u001b[K\u001b[33mWARN\u001b[39m[0000] reference for unknown type: text/plain\u001b[8C\u001b[33mdiges"]
|
||||
[17.52085, "o", "t\u001b[39m=\"sha256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec\r\n\u001b[K\u001b[20;119Hc0fb85d299a192a447\" \u001b[33mmediatype\u001b[39m=text/plain \u001b[33msize\u001b[39m=12\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[15A\u001b[33m\u001b[39m\u001b[33m\u001b[39m\u001b[33m\u001b[39m\u001b[33m\u001b[39m\u001b[11A\u001b[K$\b\n\u001b[K$ echo \"{\\\"name\\\":\\\"foo\\\",\\\"value\\\":\\\"bar\\\"}\" > config.json\r\n\u001b[K$\b\n\u001b[K$ echo \"hello world\" > artifact.txt\r\n\u001b[K$\b\n\u001b[K$ oras push localhost:5000/hello-artifact:v2 --manifest-config config.json:application/vnd.acme.rocket.config.v1+json a\r\n\u001b[K\u001b[16;119Hartifact.txt:text/plain -v\r\n\u001b[KPreparing artifact.txt\r\n\u001b[KUploading a948904f2f0f artifact.txt\r\n\u001b[K\u001b[33mWARN\u001b[39m[0000] reference for unknown type: text/plain\u001b[8C\u001b[33mdigest\u001b[39m=\"sha256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec\r\n\u001b[K\u001b[20;119Hc0fb85d299a192a447\" \u001b[33mmediatype\u001b[39m=text/plain \u001b[33msize\u001b[39m=12\r\n\u001b[K\u001b[33mWARN\u001b[39m[0000] reference for unknown type: application/vnd.acme.rocket.config.v1+json \u001b[33mdigest\u001b[39m=\"sha256:98df5c495df63132fb26e\r\n\u001b[K\u001b[22;119He1066eb3bee4e4d72973da11b4e4e513ab"]
|
||||
[17.520878, "o", "11c15145b7\" \u001b[33mmediatype\u001b[39m=application/vnd.acme.rocket.config.v1+json \u001b[33msize\u001b[39m=29\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[13A"]
|
||||
[17.523072, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/hello-artifact/blobs/sha256/a948904f2f0f479b8f8197694b30184b0d2ed1c1cd\r\n\u001b[K\u001b[1;119Hd2a1ec0fb85d299a192a447: no such file or directory\",\"blob\":\"/var/lib/registry/hello-artifact/blobs/sha256/a948904f2f0f47\r\n\u001b[K\u001b[2;119H79b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"goroutine\":9,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.g\r\n\u001b[K\u001b[3;119Hgo:1272\",\"time\":\"2022-04-11T07:38:04.766384808Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272"]
|
||||
[17.523294, "o", "\",\"message\":\r\n\u001b[K\u001b[4;119H:\"failed to stat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a44\r\n\u001b[K\u001b[6;119H47\",\"goroutine\":9,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:38:04.766479395Z\",\"\r\n\u001b[K\u001b[7;119H\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/hello-artifact/blobs/sha256/98df5c495df63132fb26e1066eb3bee4e4d72973da\r\n\u001b[K\u001b[1;119Ha11b4e4e513ab11c15145b7: no such file or directory\",\"blob\":\"/var/lib/registry/hello-artifact/blobs/sha256/98df5c495df631\r\n\u001b[K\u001b[2;119H132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\",\"goroutine\":10,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.\r\n\u001b[K\u001b[3;119H.go:1272\",\"time\":\"2022-04-11T07:38:04.766663892Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"message\"\r\n\u001b[K\u001b[4;119H\":\"failed to stat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\""]
|
||||
[17.523472, "o", "digest\":\"sha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b\r\n\u001b[K\u001b[6;119Hb7\",\"goroutine\":10,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:38:04.766756957Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.523783, "o", "\u001b[H\u001b[K8df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\",\"statusCode\":404,\"latency\":\"1.248567ms\",\"bodySize\":407\r\n\u001b[K\u001b[1;119H7,\"headers\":{\"Accept\":[\"application/vnd.acme.rocket.config.v1+json, */*\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"go\r\n\u001b[K\u001b[2;119Horoutine\":10,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:04.767177127Z\",\"message\":\"HTT\r\n\u001b[K\u001b[3;119HTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34730\",\"method\":\"HEAD\",\"path\":\"/v2/hello-artifact/blobs/sha256:a\r\n\u001b[K\u001b[5;119Ha948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"statusCode\":404,\"latency\":\"1.072906ms\",\"bodySize\":407\r\n\u001b[K\u001b[6;119H7,\"headers\":{\"Accept\":[\"text/plain, */*\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":9,\"caller\":\"zotregistry\r\n\u001b[K\u001b[7;119Hy.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:04.767214016Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.524927, "o", "\u001b[H\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34732\",\"method\":\"POST\",\"path\":\"/v2/hello-artifact/blobs/uploads/\r\n\u001b[K\u001b[1;119H/\",\"statusCode\":202,\"latency\":\"376.568µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"0\"],\"Use\r\n\u001b[K\u001b[2;119Her-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":10,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022\r\n\u001b[K\u001b[3;119H2-04-11T07:38:04.768438808Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34730\",\"method\":\"POST\",\"path\":\"/v2/hello-artifact/blobs/uploads/\r\n\u001b[K\u001b[5;119H/\",\"statusCode\":202,\"latency\":\"356.61µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"0\"],\"User\r\n\u001b[K\u001b[6;119Hr-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":9,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-0\r\n\u001b[K\u001b[7;119H04-11T07:38:04.768499823Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.525825, "o", "\u001b[H\u001b[Kr-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":10,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022\r\n\u001b[K\u001b[1;119H2-04-11T07:38:04.768438808Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34730\",\"method\":\"POST\",\"path\":\"/v2/hello-artifact/blobs/uploads/\r\n\u001b[K\u001b[3;119H/\",\"statusCode\":202,\"latency\":\"356.61µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"0\"],\"User\r\n\u001b[K\u001b[4;119Hr-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":9,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-0\r\n\u001b[K\u001b[5;119H04-11T07:38:04.768499823Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":29,\"goroutine\":10,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\"2022-0\r\n\u001b[K\u001b[7;119H04-11T07:38:04.769321086Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.526038, "o", "\u001b[H\u001b[K4-11T07:38:04.768499823Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":29,\"goroutine\":10,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\"2022-0\r\n\u001b[K\u001b[2;119H04-11T07:38:04.769321086Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/hello-artifact/.uploads/d3db30e7-11f5-4cc5-a751-69fcabf7a94d\",\"dstDigest\":\"sh\r\n\u001b[K\u001b[4;119Hha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\",\"dst\":\"/var/lib/registry/hello-artifact/blobs/sh\r\n\u001b[K\u001b[5;119Hha256/98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\",\"goroutine\":10,\"caller\":\"zotregistry.io/zot/pkg/\r\n\u001b[K\u001b[6;119H/storage/storage_fs.go:1146\",\"time\":\"2022-04-11T07:38:04.769750654Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs\r\n\u001b[K\u001b[7;119Hs.go:1146\",\"message\":\"dedupe: enter\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.526267, "o", "\u001b[H\u001b[K4-11T07:38:04.769321086Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/hello-artifact/.uploads/d3db30e7-11f5-4cc5-a751-69fcabf7a94d\",\"dstDigest\":\"sh\r\n\u001b[K\u001b[2;119Hha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\",\"dst\":\"/var/lib/registry/hello-artifact/blobs/sh\r\n\u001b[K\u001b[3;119Hha256/98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\",\"goroutine\":10,\"caller\":\"zotregistry.io/zot/pkg/\r\n\u001b[K\u001b[4;119H/storage/storage_fs.go:1146\",\"time\":\"2022-04-11T07:38:04.76"]
|
||||
[17.52637, "o", "9750654Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs\r\n\u001b[K\u001b[5;119Hs.go:1146\",\"message\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":12,\"goroutine\":9,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T07:38:04.769952794Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.528883, "o", "\u001b[H\u001b[KstatusCode\":201,\"latency\":\"2.907414ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"29\"],\"Cont\r\n\u001b[K\u001b[1;119Htent-Type\":[\"application/octet-stream\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":10,\"caller\":\"zotregistry.\r\n\u001b[K\u001b[2;119H.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:04.772190039Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/hello-artifact/.uploads/78052cee-439a-41b7-bfb9-2d3e5d1d939c\",\"dstDigest\":\"sh\r\n\u001b[K\u001b[4;119Hha256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"dst\":\"/var/lib/registry/hello-artifact/blobs/sh\r\n\u001b[K\u001b[5;119Hha256/a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"goroutine\":9,\"caller\":\"zotregistry.io/zot/pkg/s\r\n\u001b[K\u001b[6;119Hs"]
|
||||
[17.528982, "o", "torage/storage_fs.go:1146\",\"time\":\"2022-04-11T07:38:04.772430891Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.\r\n\u001b[K\u001b[7;119H.go:1146\",\"message\":\"dedupe: enter\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.531227, "o", "\u001b[H\u001b[Ka256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"dst\":\"/var/lib/registry/hello-artifact/blobs/sh\r\n\u001b[K\u001b[1;119Hha256/a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"goroutine\":9,\"caller\":\"zotregistry.io/zot/pkg"]
|
||||
[17.531284, "o", "/s\r\n\u001b[K\u001b[2;119Hstorage/storage_fs.go:1146\",\"time\":\"2022-04-11T07:38:04.772430891Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.\r\n\u001b[K\u001b[3;119H.go:1146\",\"message\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/hello-artifact/.uploads/78052cee-439a-41b7-bfb9-2d3e5d1d939c\",\"dst\":\"/var/lib\r\n\u001b[K\u001b[5;119Hb/registry/hello-artifact/blobs/sha256/a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"goroutine\":9,\"\r\n\u001b[K\u001b[6;119H\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:117"]
|
||||
[17.531366, "o", "1\",\"time\":\"2022-04-11T07:38:04.774915291Z\",\"caller\":\"zotregist\r\n\u001b[K\u001b[7;119Htry.io/zot/pkg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[K/registry/hello-artifact/blobs/sha256/a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"goroutine\":9,\"\r\n\u001b[K\u001b[1;119H\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:38:04.774915291Z\",\"caller\":\"zotregist\r\n\u001b[K\u001b[2;119Htry.io/zot/pkg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34730\",\"method\":\"PUT\",\"path\":\"/v2/hello-artifact/blobs/uploads/7\r\n\u001b[K\u001b[4;119H78052cee-439a-41b7-bfb9-2d3e5d1d939c?digest=sha256%3Aa948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"\r\n\u001b[K\u001b[5;119H\"s"]
|
||||
[17.531418, "o", "tatusCode\":201,\"latency\":\"5.059851ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"12\"],\"Cont\r\n\u001b[K\u001b[6;119Htent-Type\":[\"application/octet-stream\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":9,\"caller\":\"zotregistry.i\r\n\u001b[K\u001b[7;119Hio/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:04.774996974Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.532017, "o", "\u001b[H\u001b[K8052cee-439a-41b7-bfb9-2d3e5d1d939c?digest=sha256%3Aa948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"\r\n\u001b[K\u001b[1;119H\"statusCode\":201,\"latency\":\"5.059851ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"12\"],\"Cont\r\n\u001b[K\u001b[2;119Htent-Type\":[\"application/octet-stream\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":9,\"caller\":\"zotregistry.i\r\n\u001b[K\u001b[3;119Hio/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:04.774996974Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34730\",\"method\":\"HEAD\",\"path\":\"/v2/hello-artifact/manifests/v2\",\r\n\u001b[K\u001b[5;119H,\"statusCode\":404,\"latency\":\"115.918µs\",\"bodySize\":221,\"headers\":{\"Accept\":[\"application/vnd.oci.image.manifest.v1+json,\r\n\u001b[K\u001b[6;119H, */*\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":9,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"t\r\n\u001b[K\u001b[7;119Htime\":\"2022-04-11T07:38:04.775775087Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.532554, "o", "\u001b[H\u001b[K */*\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":9,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"t\r\n\u001b[K\u001b[1;119Htime\":\"2022-04-11T07:38:04.775775087Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[3;119Hler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776313189Z\",\"message\":\"GC: got refer\r\n\u001b[K\u001b[4;119Hrence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha25"]
|
||||
[17.532683, "o", "6:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[6;119Hler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776346541Z\",\"message\":\"GC: marking f\r\n\u001b[K\u001b[7;119Hfrom root\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[Ker\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776313189Z\",\"message\":\"GC: got refer\r\n\u001b[K\u001b[1;119Hrence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\",\"gorouti"]
|
||||
[17.532734, "o", "ne\":9,\"call\r\n\u001b[K\u001b[3;119Hler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776346541Z\",\"message\":\"GC: marking f\r\n\u001b[K\u001b[4;119Hfrom root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[6;119Hler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776375205Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[7;119He\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[Ker\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776346541Z\",\"message\":\"GC: marking f\r\n\u001b[K\u001b[1;119Hfrom root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[3;119Hler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776375205Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[4;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"github.com/opencontainers/image-spec/specs-go::Versioned\",\"v1path\":\"github.com/opencontainers/\r\n\u001b[K\u001b[6;119H/image-spec/sp"]
|
||||
[17.532769, "o", "ecs-go/v1\",\"goroutine\":9,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07\r\n\u001b[K\u001b[7;119H7:38:04.776448593Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[Kimage-spec/specs-go/v1\",\"goroutine\":9,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07\r\n\u001b[K\u001b[1;119H7:38:04.776448593Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[3;119Hler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776488508Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[4;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":9,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.\r\n\u001b[K\u001b[6;119H.776527832Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.acme.rocket.config.v1+json of blob s\r\n\u001b[K\u001b[7;119Hsha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c1514"]
|
||||
[17.532795, "o", "5b7\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[Ker\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776488508Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[1;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":9,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.\r\n\u001b[K\u001b[3;119H.776527832Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.acme.rocket.config.v1+json of blob s\r\n\u001b[K\u001b[4;119Hsha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[6;119Hler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776556616Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[7;119"]
|
||||
[17.532818, "o", "He\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[K776527832Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.acme.rocket.config.v1+json of blob s\r\n\u001b[K\u001b[1;119Hsha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[3;119Hler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776556616Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[4;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[6;119Hler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776586813Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[7;119H"]
|
||||
[17.532852, "o", "e\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[Ker\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776556616Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[1;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[3;119Hler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776586813Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[4;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":9,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_"]
|
||||
[17.532896, "o", "fs.go:143\",\"time\":\"2022-04-11T07:38:04.\r\n\u001b[K\u001b[6;119H.776646555Z\",\"message\":\"skipping walk into non-parseable media-type text/plain of blob sha256:a948904f2f0f479b8f8197694b\r\n\u001b[K\u001b[7;119Hb30184b0d2ed1c1cd2a1ec0fb85d299a192a447\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[Ker\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776586813Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[1;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":9,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.\r\n\u001b[K\u001b[3;11"]
|
||||
[17.523072, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/hello-artifact/blobs/sha256/a948904f2f0f479b8f8197694b30184b0d2ed1c1cd\r\n\u001b[K\u001b[1;119Hd2a1ec0fb85d299a192a447: no such file or directory\",\"blob\":\"/var/lib/registry/hello-artifact/blobs/sha256/a948904f2f0f47\r\n\u001b[K\u001b[2;119H79b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"goroutine\":9,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.g\r\n\u001b[K\u001b[3;119Hgo:1272\",\"time\":\"2022-04-11T07:38:04.766384808Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272"]
|
||||
[17.523294, "o", "\",\"message\":\r\n\u001b[K\u001b[4;119H:\"failed to stat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a44\r\n\u001b[K\u001b[6;119H47\",\"goroutine\":9,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:38:04.766479395Z\",\"\r\n\u001b[K\u001b[7;119H\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/hello-artifact/blobs/sha256/98df5c495df63132fb26e1066eb3bee4e4d72973da\r\n\u001b[K\u001b[1;119Ha11b4e4e513ab11c15145b7: no such file or directory\",\"blob\":\"/var/lib/registry/hello-artifact/blobs/sha256/98df5c495df631\r\n\u001b[K\u001b[2;119H132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\",\"goroutine\":10,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.\r\n\u001b[K\u001b[3;119H.go:1272\",\"time\":\"2022-04-11T07:38:04.766663892Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"message\"\r\n\u001b[K\u001b[4;119H\":\"failed to stat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\""]
|
||||
[17.523472, "o", "digest\":\"sha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b\r\n\u001b[K\u001b[6;119Hb7\",\"goroutine\":10,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:38:04.766756957Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.523783, "o", "\u001b[H\u001b[K8df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\",\"statusCode\":404,\"latency\":\"1.248567ms\",\"bodySize\":407\r\n\u001b[K\u001b[1;119H7,\"headers\":{\"Accept\":[\"application/vnd.acme.rocket.config.v1+json, */*\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"go\r\n\u001b[K\u001b[2;119Horoutine\":10,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:04.767177127Z\",\"message\":\"HTT\r\n\u001b[K\u001b[3;119HTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34730\",\"method\":\"HEAD\",\"path\":\"/v2/hello-artifact/blobs/sha256:a\r\n\u001b[K\u001b[5;119Ha948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"statusCode\":404,\"latency\":\"1.072906ms\",\"bodySize\":407\r\n\u001b[K\u001b[6;119H7,\"headers\":{\"Accept\":[\"text/plain, */*\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":9,\"caller\":\"zotregistry\r\n\u001b[K\u001b[7;119Hy.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:04.767214016Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.524927, "o", "\u001b[H\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34732\",\"method\":\"POST\",\"path\":\"/v2/hello-artifact/blobs/uploads/\r\n\u001b[K\u001b[1;119H/\",\"statusCode\":202,\"latency\":\"376.568µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"0\"],\"Use\r\n\u001b[K\u001b[2;119Her-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":10,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022\r\n\u001b[K\u001b[3;119H2-04-11T07:38:04.768438808Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34730\",\"method\":\"POST\",\"path\":\"/v2/hello-artifact/blobs/uploads/\r\n\u001b[K\u001b[5;119H/\",\"statusCode\":202,\"latency\":\"356.61µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"0\"],\"User\r\n\u001b[K\u001b[6;119Hr-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":9,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-0\r\n\u001b[K\u001b[7;119H04-11T07:38:04.768499823Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.525825, "o", "\u001b[H\u001b[Kr-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":10,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022\r\n\u001b[K\u001b[1;119H2-04-11T07:38:04.768438808Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34730\",\"method\":\"POST\",\"path\":\"/v2/hello-artifact/blobs/uploads/\r\n\u001b[K\u001b[3;119H/\",\"statusCode\":202,\"latency\":\"356.61µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"0\"],\"User\r\n\u001b[K\u001b[4;119Hr-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":9,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-0\r\n\u001b[K\u001b[5;119H04-11T07:38:04.768499823Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":29,\"goroutine\":10,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\"2022-0\r\n\u001b[K\u001b[7;119H04-11T07:38:04.769321086Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.526038, "o", "\u001b[H\u001b[K4-11T07:38:04.768499823Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":29,\"goroutine\":10,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\"2022-0\r\n\u001b[K\u001b[2;119H04-11T07:38:04.769321086Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/hello-artifact/.uploads/d3db30e7-11f5-4cc5-a751-69fcabf7a94d\",\"dstDigest\":\"sh\r\n\u001b[K\u001b[4;119Hha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\",\"dst\":\"/var/lib/registry/hello-artifact/blobs/sh\r\n\u001b[K\u001b[5;119Hha256/98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\",\"goroutine\":10,\"caller\":\"zotregistry.dev/zot/pkg/\r\n\u001b[K\u001b[6;119H/storage/storage_fs.go:1146\",\"time\":\"2022-04-11T07:38:04.769750654Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs\r\n\u001b[K\u001b[7;119Hs.go:1146\",\"message\":\"dedupe: enter\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.526267, "o", "\u001b[H\u001b[K4-11T07:38:04.769321086Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/hello-artifact/.uploads/d3db30e7-11f5-4cc5-a751-69fcabf7a94d\",\"dstDigest\":\"sh\r\n\u001b[K\u001b[2;119Hha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\",\"dst\":\"/var/lib/registry/hello-artifact/blobs/sh\r\n\u001b[K\u001b[3;119Hha256/98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\",\"goroutine\":10,\"caller\":\"zotregistry.dev/zot/pkg/\r\n\u001b[K\u001b[4;119H/storage/storage_fs.go:1146\",\"time\":\"2022-04-11T07:38:04.76"]
|
||||
[17.52637, "o", "9750654Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs\r\n\u001b[K\u001b[5;119Hs.go:1146\",\"message\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":12,\"goroutine\":9,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T07:38:04.769952794Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.528883, "o", "\u001b[H\u001b[KstatusCode\":201,\"latency\":\"2.907414ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"29\"],\"Cont\r\n\u001b[K\u001b[1;119Htent-Type\":[\"application/octet-stream\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":10,\"caller\":\"zotregistry.\r\n\u001b[K\u001b[2;119H.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:04.772190039Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/hello-artifact/.uploads/78052cee-439a-41b7-bfb9-2d3e5d1d939c\",\"dstDigest\":\"sh\r\n\u001b[K\u001b[4;119Hha256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"dst\":\"/var/lib/registry/hello-artifact/blobs/sh\r\n\u001b[K\u001b[5;119Hha256/a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"goroutine\":9,\"caller\":\"zotregistry.dev/zot/pkg/s\r\n\u001b[K\u001b[6;119Hs"]
|
||||
[17.528982, "o", "torage/storage_fs.go:1146\",\"time\":\"2022-04-11T07:38:04.772430891Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.\r\n\u001b[K\u001b[7;119H.go:1146\",\"message\":\"dedupe: enter\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.531227, "o", "\u001b[H\u001b[Ka256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"dst\":\"/var/lib/registry/hello-artifact/blobs/sh\r\n\u001b[K\u001b[1;119Hha256/a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"goroutine\":9,\"caller\":\"zotregistry.dev/zot/pkg"]
|
||||
[17.531284, "o", "/s\r\n\u001b[K\u001b[2;119Hstorage/storage_fs.go:1146\",\"time\":\"2022-04-11T07:38:04.772430891Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.\r\n\u001b[K\u001b[3;119H.go:1146\",\"message\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/hello-artifact/.uploads/78052cee-439a-41b7-bfb9-2d3e5d1d939c\",\"dst\":\"/var/lib\r\n\u001b[K\u001b[5;119Hb/registry/hello-artifact/blobs/sha256/a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"goroutine\":9,\"\r\n\u001b[K\u001b[6;119H\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:117"]
|
||||
[17.531366, "o", "1\",\"time\":\"2022-04-11T07:38:04.774915291Z\",\"caller\":\"zotregist\r\n\u001b[K\u001b[7;119Htry.dev/zot/pkg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[K/registry/hello-artifact/blobs/sha256/a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"goroutine\":9,\"\r\n\u001b[K\u001b[1;119H\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:38:04.774915291Z\",\"caller\":\"zotregist\r\n\u001b[K\u001b[2;119Htry.dev/zot/pkg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34730\",\"method\":\"PUT\",\"path\":\"/v2/hello-artifact/blobs/uploads/7\r\n\u001b[K\u001b[4;119H78052cee-439a-41b7-bfb9-2d3e5d1d939c?digest=sha256%3Aa948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"\r\n\u001b[K\u001b[5;119H\"s"]
|
||||
[17.531418, "o", "tatusCode\":201,\"latency\":\"5.059851ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"12\"],\"Cont\r\n\u001b[K\u001b[6;119Htent-Type\":[\"application/octet-stream\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":9,\"caller\":\"zotregistry.d\r\n\u001b[K\u001b[7;119Hev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:04.774996974Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.532017, "o", "\u001b[H\u001b[K8052cee-439a-41b7-bfb9-2d3e5d1d939c?digest=sha256%3Aa948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"\r\n\u001b[K\u001b[1;119H\"statusCode\":201,\"latency\":\"5.059851ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"12\"],\"Cont\r\n\u001b[K\u001b[2;119Htent-Type\":[\"application/octet-stream\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":9,\"caller\":\"zotregistry.d\r\n\u001b[K\u001b[3;119Hev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:04.774996974Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34730\",\"method\":\"HEAD\",\"path\":\"/v2/hello-artifact/manifests/v2\",\r\n\u001b[K\u001b[5;119H,\"statusCode\":404,\"latency\":\"115.918µs\",\"bodySize\":221,\"headers\":{\"Accept\":[\"application/vnd.oci.image.manifest.v1+json,\r\n\u001b[K\u001b[6;119H, */*\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":9,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"t\r\n\u001b[K\u001b[7;119Htime\":\"2022-04-11T07:38:04.775775087Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.532554, "o", "\u001b[H\u001b[K */*\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":9,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"t\r\n\u001b[K\u001b[1;119Htime\":\"2022-04-11T07:38:04.775775087Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[3;119Hler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776313189Z\",\"message\":\"GC: got refer\r\n\u001b[K\u001b[4;119Hrence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha25"]
|
||||
[17.532683, "o", "6:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[6;119Hler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776346541Z\",\"message\":\"GC: marking f\r\n\u001b[K\u001b[7;119Hfrom root\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[Ker\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776313189Z\",\"message\":\"GC: got refer\r\n\u001b[K\u001b[1;119Hrence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\",\"gorouti"]
|
||||
[17.532734, "o", "ne\":9,\"call\r\n\u001b[K\u001b[3;119Hler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776346541Z\",\"message\":\"GC: marking f\r\n\u001b[K\u001b[4;119Hfrom root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[6;119Hler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776375205Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[7;119He\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[Ker\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776346541Z\",\"message\":\"GC: marking f\r\n\u001b[K\u001b[1;119Hfrom root\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[3;119Hler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776375205Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[4;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"github.com/opencontainers/image-spec/specs-go::Versioned\",\"v1path\":\"github.com/opencontainers/\r\n\u001b[K\u001b[6;119H/image-spec/sp"]
|
||||
[17.532769, "o", "ecs-go/v1\",\"goroutine\":9,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07\r\n\u001b[K\u001b[7;119H7:38:04.776448593Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[Kimage-spec/specs-go/v1\",\"goroutine\":9,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07\r\n\u001b[K\u001b[1;119H7:38:04.776448593Z\",\"message\":\"detected jump outside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[3;119Hler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776488508Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[4;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":9,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.\r\n\u001b[K\u001b[6;119H.776527832Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.acme.rocket.config.v1+json of blob s\r\n\u001b[K\u001b[7;119Hsha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c1514"]
|
||||
[17.532795, "o", "5b7\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[Ker\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776488508Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[1;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":9,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.\r\n\u001b[K\u001b[3;119H.776527832Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.acme.rocket.config.v1+json of blob s\r\n\u001b[K\u001b[4;119Hsha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[6;119Hler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776556616Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[7;119"]
|
||||
[17.532818, "o", "He\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[K776527832Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.acme.rocket.config.v1+json of blob s\r\n\u001b[K\u001b[1;119Hsha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[3;119Hler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776556616Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[4;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[6;119Hler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776586813Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[7;119H"]
|
||||
[17.532852, "o", "e\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[Ker\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776556616Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[1;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[3;119Hler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776586813Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[4;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":9,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_"]
|
||||
[17.532896, "o", "fs.go:143\",\"time\":\"2022-04-11T07:38:04.\r\n\u001b[K\u001b[6;119H.776646555Z\",\"message\":\"skipping walk into non-parseable media-type text/plain of blob sha256:a948904f2f0f479b8f8197694b\r\n\u001b[K\u001b[7;119Hb30184b0d2ed1c1cd2a1ec0fb85d299a192a447\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[Ker\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776586813Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[1;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":9,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.\r\n\u001b[K\u001b[3;11"]
|
||||
[17.532913, "o", "9H.776646555Z\",\"message\":\"skipping walk into non-parseable media-type text/plain of blob sha256:a948904f2f0f479b8f8197694b\r\n\u001b[K\u001b[4;119Hb30184b0d2ed1c1cd2a1ec0fb85d299a192a447\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:a948904f2f0f479b8f8197694b30184b0d2ed1c1c"]
|
||||
[17.532942, "o", "d2a1ec0fb85d299a192a447\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[6;119Hler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776689245Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[7;119He\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[K776646555Z\",\"message\":\"skipping walk into non-parseable media-type text/plain of blob sha256:a948904f2f0f479b8f8197694b\r\n\u001b[K\u001b[1;119Hb30184b0d2ed1c1cd2a1ec0fb85d299a192a447\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[3;119Hler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776689245Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[4;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\",\"gorouti"]
|
||||
[17.532961, "o", "ne\":9,\"call\r\n\u001b[K\u001b[6;119Hler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776731585Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[7;119He\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.533022, "o", "\u001b[H\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[1;119Hler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776689245Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[2;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[4;119Hler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776731585Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[5;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":9,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.\r\n\u001b[K\u001b[7;119H.776828377Z\",\"message\":\"garbage collected 0 blobs\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.533093, "o", "\u001b[H\u001b[Ker\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776731585Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[1;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":9,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.\r\n\u001b[K\u001b[3;119H.776828377Z\",\"message\":\"garbage collected 0 blobs\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34730\",\"method\":\"PUT\",\"path\":\"/v2/hello-artifact/manifests/v2\",\"\r\n\u001b[K\u001b[5;119H\"statusCode\":201,\"latency\":\"827.346µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"375\"],\"Cont\r\n\u001b[K\u001b[6;119Htent-Type\":[\"application/vnd.oci.image.manifest.v1+json\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":9,\"call\r\n\u001b[K\u001b[7;119Hler\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:04.77688299Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.532942, "o", "d2a1ec0fb85d299a192a447\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[6;119Hler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776689245Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[7;119He\"}\r\n\u001b[K\u001b[15B\u001b[H\u001b[K776646555Z\",\"message\":\"skipping walk into non-parseable media-type text/plain of blob sha256:a948904f2f0f479b8f8197694b\r\n\u001b[K\u001b[1;119Hb30184b0d2ed1c1cd2a1ec0fb85d299a192a447\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[3;119Hler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776689245Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[4;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\",\"gorouti"]
|
||||
[17.532961, "o", "ne\":9,\"call\r\n\u001b[K\u001b[6;119Hler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776731585Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[7;119He\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.533022, "o", "\u001b[H\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[1;119Hler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776689245Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[2;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\",\"goroutine\":9,\"call\r\n\u001b[K\u001b[4;119Hler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776731585Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[5;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":9,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.\r\n\u001b[K\u001b[7;119H.776828377Z\",\"message\":\"garbage collected 0 blobs\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.533093, "o", "\u001b[H\u001b[Ker\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.776731585Z\",\"message\":\"<- ws.recurse\r\n\u001b[K\u001b[1;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":9,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:38:04.\r\n\u001b[K\u001b[3;119H.776828377Z\",\"message\":\"garbage collected 0 blobs\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34730\",\"method\":\"PUT\",\"path\":\"/v2/hello-artifact/manifests/v2\",\"\r\n\u001b[K\u001b[5;119H\"statusCode\":201,\"latency\":\"827.346µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"375\"],\"Cont\r\n\u001b[K\u001b[6;119Htent-Type\":[\"application/vnd.oci.image.manifest.v1+json\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":9,\"call\r\n\u001b[K\u001b[7;119Hler\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:04.77688299Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[15B"]
|
||||
[17.533171, "o", "Pushed localhost:5000/hello-artifact:v2\r\n \bDigest: sha256:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\r\n \b"]
|
||||
[17.534211, "o", "$ "]
|
||||
[18.023399, "i", "\r"]
|
||||
|
@ -78,13 +78,13 @@
|
|||
[32.274512, "o", "oras pull localhost:5000/hello-artifact:v2 -v -a"]
|
||||
[33.490561, "i", "\r"]
|
||||
[33.491274, "o", "\r$\b\n \b"]
|
||||
[33.505179, "o", "\u001b[H\u001b[KstatusCode\":201,\"latency\":\"827.346µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"375\"],\"Cont\r\n\u001b[K\u001b[1;119Htent-Type\":[\"application/vnd.oci.image.manifest.v1+json\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":9,\"call\r\n\u001b[K\u001b[2;119Hler\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:04.77688299Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34734\",\"method\":\"HEAD\",\"path\":\"/v2/hello-artifact/manifests/v2\",\r\n\u001b[K\u001b[4;119H,\"statusCode\":200,\"latency\":\"647.648µs\",\"bodySize\":0,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.\r\n\u001b[K\u001b[5;119H.v2+json, application/vnd.docker.distribution.manifest.list.v2+json, application/vnd.oci.image.manifest.v1+json, applica\r\n\u001b[K\u001b[6;119Hation/vnd.oci.image.index.v1+json, */*\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":81,\"caller\":\"zotregistry\r\n\u001b[K\u001b[7;119Hy.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:20.748590044Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[23B"]
|
||||
[33.507824, "o", "\u001b[H\u001b[Kv2+json, application/vnd.docker.distribution.manifest.list.v2+json, application/vnd.oci.image.manifest.v1+json, applica\r\n\u001b[K\u001b[1;119Hation/vnd.oci.image.index.v1+json, */*\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":81,\"caller\":\"zotregistry\r\n\u001b[K\u001b[2;119Hy.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:20.748590044Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34734\",\"method\":\"GET\",\"path\":\"/v2/hello-artifact/manifests/sha25\r\n\u001b[K\u001b[4;119H56:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\",\"statusCode\":200,\"latency\":\"161.844µs\",\"bodySize\":3\r\n\u001b[K\u001b[5;119H375,\"headers\":{\"Accept\":[\"application/vnd.oci.image.manifest.v1+json, */*\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"co\r\n\u001b[K\u001b[6;119Hontainerd/1.5.2+unknown\"]},\"goroutine\":81,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:\r\n\u001b[K\u001b[7;119H:20.7512057Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[23B"]
|
||||
[33.505179, "o", "\u001b[H\u001b[KstatusCode\":201,\"latency\":\"827.346µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Content-Length\":[\"375\"],\"Cont\r\n\u001b[K\u001b[1;119Htent-Type\":[\"application/vnd.oci.image.manifest.v1+json\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":9,\"call\r\n\u001b[K\u001b[2;119Hler\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:04.77688299Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34734\",\"method\":\"HEAD\",\"path\":\"/v2/hello-artifact/manifests/v2\",\r\n\u001b[K\u001b[4;119H,\"statusCode\":200,\"latency\":\"647.648µs\",\"bodySize\":0,\"headers\":{\"Accept\":[\"application/vnd.docker.distribution.manifest.\r\n\u001b[K\u001b[5;119H.v2+json, application/vnd.docker.distribution.manifest.list.v2+json, application/vnd.oci.image.manifest.v1+json, applica\r\n\u001b[K\u001b[6;119Hation/vnd.oci.image.index.v1+json, */*\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":81,\"caller\":\"zotregistry\r\n\u001b[K\u001b[7;119Hy.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:20.748590044Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[23B"]
|
||||
[33.507824, "o", "\u001b[H\u001b[Kv2+json, application/vnd.docker.distribution.manifest.list.v2+json, application/vnd.oci.image.manifest.v1+json, applica\r\n\u001b[K\u001b[1;119Hation/vnd.oci.image.index.v1+json, */*\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\":81,\"caller\":\"zotregistry\r\n\u001b[K\u001b[2;119Hy.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:20.748590044Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34734\",\"method\":\"GET\",\"path\":\"/v2/hello-artifact/manifests/sha25\r\n\u001b[K\u001b[4;119H56:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\",\"statusCode\":200,\"latency\":\"161.844µs\",\"bodySize\":3\r\n\u001b[K\u001b[5;119H375,\"headers\":{\"Accept\":[\"application/vnd.oci.image.manifest.v1+json, */*\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"co\r\n\u001b[K\u001b[6;119Hontainerd/1.5.2+unknown\"]},\"goroutine\":81,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:\r\n\u001b[K\u001b[7;119H:20.7512057Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[23B"]
|
||||
[33.508393, "o", "\u001b[33m\u001b[39m\u001b[33mWARN\u001b[39m[0000] blob no name: sha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7 \r\n \b\u001b[33m\u001b[39m\u001b[33m\u001b[39m\u001b[33m\u001b[39m\u001b[33m\u001b[39m\u001b[22A\u001b[K$\b\n\u001b[K$ echo \"{\\\"name\\\":\\\"foo\\\",\\\"value\\\":\\\"bar\\\"}\" > config.json\r\n\u001b[K$\b\n\u001b[K$ echo \"hello world\" > artifact.txt\r\n\u001b[K$\b\n\u001b[K$ oras push localhost:5000/hello-artifact:v2 --manifest-config config.json:application/vnd.acme.rocket.config.v1+json a\r\n\u001b[K\u001b[16;119Hartifact.txt:text/plain -v\r\n\u001b[KPreparing artifact.txt\r\n\u001b[KUploading a948904f2f0f artifac"]
|
||||
[33.508482, "o", "t.txt\r\n\u001b[K\u001b[33mWARN\u001b[39m[0000] reference for unknown type: text/plain\u001b[8C\u001b[33mdigest\u001b[39m=\"sha256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec\r\n\u001b[K\u001b[20;119Hc0fb85d299a192a447\" \u001b[33mmediatype\u001b[39m=text/plain \u001b[33msize\u001b[39m=12\r\n\u001b[K\u001b[33mWARN\u001b[39m[0000] reference for unknown type: application/vnd.acme.rocket.config.v1+json \u001b[33mdigest\u001b[39m=\"sha256:98df5c495df63132fb26e\r\n\u001b[K\u001b[22;119He1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\" \u001b[33mmediatype\u001b[39m=application/vnd.acme.rocket.config.v1+json \u001b[33msize\u001b[39m=29\r\n\u001b[KPushed localhost:5000/hello-artifact:v2\r\n\u001b[KDigest: sha256:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\r\n\u001b[K$\b\n\u001b[K$ rm -f artifact.txt\r\n\u001b[K$\b\n\u001b[K$ rm -f config.json\r\n\u001b[K$\b\n\u001b[K$ oras pull localhost:5000/hello-artifact:v2 -v -a\r\n\u001b[K\u001b[33mWARN\u001b[39m[0000] blob no name: sha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\r\n\u001b[K\u001b[33mWARN\u001b[39m[0000] reference for unknown type: text/plain\u001b[8C\u001b[33mdigest\u001b[39m=\"sha256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec\r\n\u001b[K\u001b[33;11"]
|
||||
[33.508538, "o", "9Hc0fb85d299a192a447\" \u001b[33mmediatype\u001b[39m=text/plain \u001b[33msize\u001b[39m=12\r\n\u001b[K\n\u001b[K\n\u001b[K\u001b[2A"]
|
||||
[33.50933, "o", "\u001b[H\u001b[K6:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\",\"statusCode\":200,\"latency\":\"161.844µs\",\"bodySize\":3\r\n\u001b[K\u001b[1;119H375,\"headers\":{\"Accept\":[\"application/vnd.oci.image.manifest.v1+json, */*\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"co\r\n\u001b[K\u001b[2;119Hontainerd/1.5.2+unknown\"]},\"goroutine\":81,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:\r\n\u001b[K\u001b[3;119H:20.7512057Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34734\",\"method\":\"GET\",\"path\":\"/v2/hello-artifact/blobs/sha256:a9\r\n\u001b[K\u001b[5;119H948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"statusCode\":200,\"latency\":\"136.075µs\",\"bodySize\":12,\"h\r\n\u001b[K\u001b[6;119Hheaders\":{\"Accept\":[\"text/plain, */*\"],\"Accept-Encoding\":"]
|
||||
[33.509428, "o", "[\"gzip\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\"\r\n\u001b[K\u001b[7;119H\":81,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:20.752852425Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[33.50933, "o", "\u001b[H\u001b[K6:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\",\"statusCode\":200,\"latency\":\"161.844µs\",\"bodySize\":3\r\n\u001b[K\u001b[1;119H375,\"headers\":{\"Accept\":[\"application/vnd.oci.image.manifest.v1+json, */*\"],\"Accept-Encoding\":[\"gzip\"],\"User-Agent\":[\"co\r\n\u001b[K\u001b[2;119Hontainerd/1.5.2+unknown\"]},\"goroutine\":81,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:\r\n\u001b[K\u001b[3;119H:20.7512057Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34734\",\"method\":\"GET\",\"path\":\"/v2/hello-artifact/blobs/sha256:a9\r\n\u001b[K\u001b[5;119H948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec0fb85d299a192a447\",\"statusCode\":200,\"latency\":\"136.075µs\",\"bodySize\":12,\"h\r\n\u001b[K\u001b[6;119Hheaders\":{\"Accept\":[\"text/plain, */*\"],\"Accept-Encoding\":"]
|
||||
[33.509428, "o", "[\"gzip\"],\"User-Agent\":[\"containerd/1.5.2+unknown\"]},\"goroutine\"\r\n\u001b[K\u001b[7;119H\":81,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:38:20.752852425Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[26B"]
|
||||
[33.511505, "o", "Downloaded a948904f2f0f artifact.txt\r\n \b\u001b[25A\u001b[K$ echo \"{\\\"name\\\":\\\"foo\\\",\\\"value\\\":\\\"bar\\\"}\" > config.json\r\n\u001b[K$\b\n\u001b[K$ echo \"hello world\" > artifact.txt\r\n\u001b[K$\b\n\u001b[K$ oras push localhost:5000/hello-artifact:v2 --manifest-config config.json:application/vnd.acme.rocket.config.v1+json a\r\n\u001b[K\u001b[15;119Hartifact.txt:text/plain -v\r\n\u001b[KPreparing artifact.txt\r\n\u001b[KUploading a948904f2f0f artifact.txt\r\n\u001b[K\u001b[33mWARN\u001b[39m[0000] reference for unknown type: text/plain\u001b[8C\u001b[33mdigest\u001b[39m=\"sha256:a948904f2f0f479b8f8197694b301"]
|
||||
[33.511579, "o", "84b0d2ed1c1cd2a1ec\r\n\u001b[K\u001b[19;119Hc0fb85d299a192a447\" \u001b[33mmediatype\u001b[39m=text/plain \u001b[33msize\u001b[39m=12\r\n\u001b[K\u001b[33mWARN\u001b[39m[0000] reference for unknown type: application/vnd.acme.rocket.config.v1+json \u001b[33mdigest\u001b[39m=\"sha256:98df5c495df63132fb26e\r\n\u001b[K\u001b[21;119He1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\" \u001b[33mmediatype\u001b[39m=application/vnd.acme.rocket.config.v1+json \u001b[33msize\u001b[39m=29\r\n\u001b[KPushed localhost:5000/hello-artifact:v2\r\n\u001b[KDigest: sha256:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\r\n\u001b[K$\b\n\u001b[K$ rm -f artifact.txt\r\n\u001b[K$\b\n\u001b[K$ rm -f config.json\r\n\u001b[K$\b\n\u001b[K$ oras pull localhost:5000/hello-artifact:v2 -v -a\r\n\u001b[K\u001b[33mWARN\u001b[39m[0000] blob no name: sha256:98df5c495df63132fb26e1066eb3bee4e4d72973da11b4e4e513ab11c15145b7\r\n\u001b[K\u001b[33mWARN\u001b[39m[0000] reference for unknown type: text/plain\u001b[8C\u001b[33mdigest\u001b[39m=\"sha256:a948904f2f0f479b8f8197694b30184b0d2ed1c1cd2a1ec\r\n\u001b[K\u001b[32;119Hc0fb85d299a192a447\" \u001b[33mmediatype\u001b[39m=text/plain \u001b[33msize\u001b[39m=12\r\n\u001b[KDownloaded a948904f2f0f artifact.txt\r\n\u001b[KPulled loca"]
|
||||
[33.511634, "o", "lhost:5000/hello-artifact:v2\r\n\u001b[KDigest: sha256:390a1274c8a3a088ae3bf425e5c0f2ce4f4c5d0d82f683b0d22bfe94d6a0dcdc\r\n\u001b[K"]
|
||||
|
|
Before Width: | Height: | Size: 114 KiB After Width: | Height: | Size: 114 KiB |
|
@ -7,7 +7,7 @@
|
|||
[1.416124, "o", "podman run -p 5000:5000 ghcr.io/project-zot/zot-linux-amd64:latest"]
|
||||
[2.386578, "i", "\r"]
|
||||
[2.386892, "o", "\r\n"]
|
||||
[2.742913, "o", "{\"level\":\"info\",\"params\":{\"Version\":\"1.0.0-dev\",\"GoVersion\":\"go1.17.5\",\"Commit\":\"v1.3.8-rc3-38a110314ba3af67f970ed0ac909102edf7208d3\",\"BinaryType\":\"extended\",\"AccessControl\":null,\"Storage\":{\"Dedupe\":true,\"GC\":true,\"Commit\":false,\"GCDelay\":3600000000000,\"RootDirectory\":\"/var/lib/registry\",\"StorageDriver\":null,\"SubPaths\":null},\"HTTP\":{\"Address\":\"0.0.0.0\",\"Port\":\"5000\",\"TLS\":null,\"Auth\":null,\"RawAccessControl\":null,\"Realm\":\"\",\"AllowReadAccess\":false,\"ReadOnly\":false,\"Ratelimit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.io/zot/pkg/api/controller.go:103\",\"time\":\"2022-04-11T06:31:14.672820486Z\",\"message\":\"configuration settings\"}\r\n{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"max. inotify watches\":\"2147483647\",\"goroutine\":1,\"caller\":\"zotregistry.io/zot/pkg/api/controller.go:91\",\"time\":\"2022-04-11T06:31:14.67291818Z\",\"message\":\"runtime params\"}\r\n"]
|
||||
[2.742913, "o", "{\"level\":\"info\",\"params\":{\"Version\":\"1.0.0-dev\",\"GoVersion\":\"go1.17.5\",\"Commit\":\"v1.3.8-rc3-38a110314ba3af67f970ed0ac909102edf7208d3\",\"BinaryType\":\"extended\",\"AccessControl\":null,\"Storage\":{\"Dedupe\":true,\"GC\":true,\"Commit\":false,\"GCDelay\":3600000000000,\"RootDirectory\":\"/var/lib/registry\",\"StorageDriver\":null,\"SubPaths\":null},\"HTTP\":{\"Address\":\"0.0.0.0\",\"Port\":\"5000\",\"TLS\":null,\"Auth\":null,\"RawAccessControl\":null,\"Realm\":\"\",\"AllowReadAccess\":false,\"ReadOnly\":false,\"Ratelimit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.dev/zot/pkg/api/controller.go:103\",\"time\":\"2022-04-11T06:31:14.672820486Z\",\"message\":\"configuration settings\"}\r\n{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"max. inotify watches\":\"2147483647\",\"goroutine\":1,\"caller\":\"zotregistry.dev/zot/pkg/api/controller.go:91\",\"time\":\"2022-04-11T06:31:14.67291818Z\",\"message\":\"runtime params\"}\r\n"]
|
||||
[8.163052, "i", "\u0001"]
|
||||
[8.430155, "i", "d"]
|
||||
[8.430351, "o", "\u001b[?1l\u001b>\u001b[38;1H\r\n\u001b[?1049l\u001b[23;0;0t"]
|
||||
|
|
|
@ -1 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1230" height="884.98"><rect width="1230" height="884.98" rx="5" ry="5" class="a"/><svg y="0%" x="0%"><circle cx="20" cy="20" r="6" fill="#ff5f58"/><circle cx="40" cy="20" r="6" fill="#ffbd2e"/><circle cx="60" cy="20" r="6" fill="#18c132"/></svg><svg height="824.98" viewBox="0 0 119 82.498" width="1190" x="15" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="50"><style>@keyframes j{0%{transform:translateX(0)}.1%{transform:translateX(-238px)}9.5%{transform:translateX(-357px)}16.8%{transform:translateX(-476px)}28.3%{transform:translateX(-595px)}32.5%{transform:translateX(-714px)}to{transform:translateX(-952px)}}.a{fill:#282d35}.f,.g{fill:#a8cc8c;white-space:pre}.g{fill:#b9c0cb}</style><g font-family="Monaco,Consolas,Menlo,'Bitstream Vera Sans Mono','Powerline Symbols',monospace" font-size="1.67"><defs><symbol id="1"><text y="1.67" class="f">$</text></symbol><symbol id="2"><text y="1.67" class="f">$</text><text x="2.004" y="1.67" class="g">podman</text><text x="9.018" y="1.67" class="g">run</text><text x="13.026" y="1.67" class="g">-p</text><text x="16.032" y="1.67" class="g">5000:5000</text><text x="26.052" y="1.67" class="g">ghcr.io/project-zot/zot-linux-amd64:latest</text></symbol><symbol id="a"><path fill="transparent" d="M0 0h119v38H0z"/></symbol><symbol id="b"><path fill="#6f7683" d="M0 0h1.102v2.171H0z"/></symbol></defs><path class="a" d="M0 0h119v82.498H0z"/><g style="animation-duration:8.432287s;animation-iteration-count:infinite;animation-name:j;animation-timing-function:steps(1,end)"><svg width="1071"><svg><use xlink:href="#a"/><use xlink:href="#b" x="-.004"/></svg><svg x="119"><use xlink:href="#a"/><use xlink:href="#b" x="-.004"/></svg><svg x="238"><use xlink:href="#a"/><use xlink:href="#b" x="1.996"/><use xlink:href="#1"/></svg><svg x="357"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="2.146"/><use xlink:href="#1"/><use xlink:href="#1" y="2.171"/></svg><svg x="476"><use xlink:href="#a"/><use xlink:href="#b" x="67.996" y="2.146"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/></svg><svg x="595"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="4.317"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/></svg><svg x="714"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="21.685"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><text y="6.012" class="g">{"level":"info","params":{"Version":"1.0.0-dev","GoVersion":"go1.17.5","Commit":"v1.3.8-rc3-38a110314ba3af67f970ed0ac90</text><text y="8.183" class="g">9102edf7208d3","BinaryType":"extended","AccessControl":null,"Storage":{"Dedupe":true,"GC":true,"Commit":false,"GCDelay"</text><text y="10.354" class="g">:3600000000000,"RootDirectory":"/var/lib/registry","StorageDriver":null,"SubPaths":null},"HTTP":{"Address":"0.0.0.0","P</text><text y="12.525" class="g">ort":"5000","TLS":null,"Auth":null,"RawAccessControl":null,"Realm":"","AllowReadAccess":false,"ReadOnly":false,"Ratelim</text><text y="14.696" class="g">it":null},"Log":{"Level":"debug","Output":"","Audit":""},"Extensions":null},"goroutine":1,"caller":"zotregistry.io/zot/</text><text y="16.867" class="g">pkg/api/controller.go:103","time":"2022-04-11T06:31:14.672820486Z","message":"configuration</text><text x="92.184" y="16.867" class="g">settings"}</text><text y="19.038" class="g">{"level":"info","cpus":8,"max.</text><text x="31.062" y="19.038" class="g">open</text><text x="36.072" y="19.038" class="g">files":1048576,"max.</text><text x="57.114" y="19.038" class="g">inotify</text><text x="65.13" y="19.038" class="g">watches":"2147483647","goroutine":1,"caller":"zotregis</text><text y="21.209" class="g">try.io/zot/pkg/api/controller.go:91","time":"2022-04-11T06:31:14.67291818Z","message":"runtime</text><text x="95.19" y="21.209" class="g">params"}</text></svg><svg x="833"><use xlink:href="#a"/><use xlink:href="#b" x="-.004"/></svg><svg x="952"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="2.146"/><text y="1.67" class="g">[detached</text><text x="10.02" y="1.67" class="g">from</text><text x="15.03" y="1.67" class="g">17941.devto]</text></svg></svg></g></g></svg></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1230" height="884.98"><rect width="1230" height="884.98" rx="5" ry="5" class="a"/><svg y="0%" x="0%"><circle cx="20" cy="20" r="6" fill="#ff5f58"/><circle cx="40" cy="20" r="6" fill="#ffbd2e"/><circle cx="60" cy="20" r="6" fill="#18c132"/></svg><svg height="824.98" viewBox="0 0 119 82.498" width="1190" x="15" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="50"><style>@keyframes j{0%{transform:translateX(0)}.1%{transform:translateX(-238px)}9.5%{transform:translateX(-357px)}16.8%{transform:translateX(-476px)}28.3%{transform:translateX(-595px)}32.5%{transform:translateX(-714px)}to{transform:translateX(-952px)}}.a{fill:#282d35}.f,.g{fill:#a8cc8c;white-space:pre}.g{fill:#b9c0cb}</style><g font-family="Monaco,Consolas,Menlo,'Bitstream Vera Sans Mono','Powerline Symbols',monospace" font-size="1.67"><defs><symbol id="1"><text y="1.67" class="f">$</text></symbol><symbol id="2"><text y="1.67" class="f">$</text><text x="2.004" y="1.67" class="g">podman</text><text x="9.018" y="1.67" class="g">run</text><text x="13.026" y="1.67" class="g">-p</text><text x="16.032" y="1.67" class="g">5000:5000</text><text x="26.052" y="1.67" class="g">ghcr.io/project-zot/zot-linux-amd64:latest</text></symbol><symbol id="a"><path fill="transparent" d="M0 0h119v38H0z"/></symbol><symbol id="b"><path fill="#6f7683" d="M0 0h1.102v2.171H0z"/></symbol></defs><path class="a" d="M0 0h119v82.498H0z"/><g style="animation-duration:8.432287s;animation-iteration-count:infinite;animation-name:j;animation-timing-function:steps(1,end)"><svg width="1071"><svg><use xlink:href="#a"/><use xlink:href="#b" x="-.004"/></svg><svg x="119"><use xlink:href="#a"/><use xlink:href="#b" x="-.004"/></svg><svg x="238"><use xlink:href="#a"/><use xlink:href="#b" x="1.996"/><use xlink:href="#1"/></svg><svg x="357"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="2.146"/><use xlink:href="#1"/><use xlink:href="#1" y="2.171"/></svg><svg x="476"><use xlink:href="#a"/><use xlink:href="#b" x="67.996" y="2.146"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/></svg><svg x="595"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="4.317"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/></svg><svg x="714"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="21.685"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><text y="6.012" class="g">{"level":"info","params":{"Version":"1.0.0-dev","GoVersion":"go1.17.5","Commit":"v1.3.8-rc3-38a110314ba3af67f970ed0ac90</text><text y="8.183" class="g">9102edf7208d3","BinaryType":"extended","AccessControl":null,"Storage":{"Dedupe":true,"GC":true,"Commit":false,"GCDelay"</text><text y="10.354" class="g">:3600000000000,"RootDirectory":"/var/lib/registry","StorageDriver":null,"SubPaths":null},"HTTP":{"Address":"0.0.0.0","P</text><text y="12.525" class="g">ort":"5000","TLS":null,"Auth":null,"RawAccessControl":null,"Realm":"","AllowReadAccess":false,"ReadOnly":false,"Ratelim</text><text y="14.696" class="g">it":null},"Log":{"Level":"debug","Output":"","Audit":""},"Extensions":null},"goroutine":1,"caller":"zotregistry.dev/zot/</text><text y="16.867" class="g">pkg/api/controller.go:103","time":"2022-04-11T06:31:14.672820486Z","message":"configuration</text><text x="92.184" y="16.867" class="g">settings"}</text><text y="19.038" class="g">{"level":"info","cpus":8,"max.</text><text x="31.062" y="19.038" class="g">open</text><text x="36.072" y="19.038" class="g">files":1048576,"max.</text><text x="57.114" y="19.038" class="g">inotify</text><text x="65.13" y="19.038" class="g">watches":"2147483647","goroutine":1,"caller":"zotregis</text><text y="21.209" class="g">try.dev/zot/pkg/api/controller.go:91","time":"2022-04-11T06:31:14.67291818Z","message":"runtime</text><text x="95.19" y="21.209" class="g">params"}</text></svg><svg x="833"><use xlink:href="#a"/><use xlink:href="#b" x="-.004"/></svg><svg x="952"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="2.146"/><text y="1.67" class="g">[detached</text><text x="10.02" y="1.67" class="g">from</text><text x="15.03" y="1.67" class="g">17941.devto]</text></svg></svg></g></g></svg></svg>
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.7 KiB |
|
@ -8,7 +8,7 @@
|
|||
[2.963694, "o", "\u001b[39mpodman run -p 5000:5000 ghcr.io/project-zot/zot-linux-amd64:latest"]
|
||||
[3.807503, "i", "\r"]
|
||||
[3.808056, "o", "\r\u001b[32m$\b\n\u001b[39m \b"]
|
||||
[4.333094, "o", "\u001b[H\u001b[K{\"level\":\"info\",\"params\":{\"Version\":\"1.0.0-dev\",\"GoVersion\":\"go1.17.5\",\"Commit\":\"v1.3.8-rc3-38a110314ba3af67f970ed0ac90\r\n\u001b[K\u001b[1;119H09102edf7208d3\",\"BinaryType\":\"extended\",\"AccessControl\":null,\"Storage\":{\"Dedupe\":true,\"GC\":true,\"Commit\":false,\"GCDelay\"\r\n\u001b[K\u001b[2;119H\":3600000000000,\"RootDirectory\":\"/var/lib/registry\",\"StorageDriver\":null,\"SubPaths\":null},\"HTTP\":{\"Address\":\"0.0.0.0\",\"P\r\n\u001b[K\u001b[3;119HPort\":\"5000\",\"TLS\":null,\"Auth\":null,\"RawAccessControl\":null,\"Realm\":\"\",\"AllowReadAccess\":false,\"ReadOnly\":false,\"Ratelim\r\n\u001b[K\u001b[4;119Hmit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.io/zot/\r\n\u001b[K\u001b[5;119H/pkg/api/controller.go:103\",\"time\":\"2022-04-11T07:05:55.969880822Z\",\"message\":\"configuration settings\"}\r\n\u001b[K{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"max. inotify watches\":\"2147483647\",\"goroutine\":1,\"caller\":\"zotregis\r\n\u001b[K\u001b[7;119Hstry.io/zot/pkg/api/controller.go:91\",\"time\":\"2022-04-11T07:05:55.969983384Z\",\"message\":\"runtime params\"}\r\n\u001b[K"]
|
||||
[4.333094, "o", "\u001b[H\u001b[K{\"level\":\"info\",\"params\":{\"Version\":\"1.0.0-dev\",\"GoVersion\":\"go1.17.5\",\"Commit\":\"v1.3.8-rc3-38a110314ba3af67f970ed0ac90\r\n\u001b[K\u001b[1;119H09102edf7208d3\",\"BinaryType\":\"extended\",\"AccessControl\":null,\"Storage\":{\"Dedupe\":true,\"GC\":true,\"Commit\":false,\"GCDelay\"\r\n\u001b[K\u001b[2;119H\":3600000000000,\"RootDirectory\":\"/var/lib/registry\",\"StorageDriver\":null,\"SubPaths\":null},\"HTTP\":{\"Address\":\"0.0.0.0\",\"P\r\n\u001b[K\u001b[3;119HPort\":\"5000\",\"TLS\":null,\"Auth\":null,\"RawAccessControl\":null,\"Realm\":\"\",\"AllowReadAccess\":false,\"ReadOnly\":false,\"Ratelim\r\n\u001b[K\u001b[4;119Hmit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.dev/zot/\r\n\u001b[K\u001b[5;119H/pkg/api/controller.go:103\",\"time\":\"2022-04-11T07:05:55.969880822Z\",\"message\":\"configuration settings\"}\r\n\u001b[K{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"max. inotify watches\":\"2147483647\",\"goroutine\":1,\"caller\":\"zotregis\r\n\u001b[K\u001b[7;119Hstry.dev/zot/pkg/api/controller.go:91\",\"time\":\"2022-04-11T07:05:55.969983384Z\",\"message\":\"runtime params\"}\r\n\u001b[K"]
|
||||
[5.397013, "i", "\u0001"]
|
||||
[5.678444, "i", "\t"]
|
||||
[5.678744, "o", " \n\n"]
|
||||
|
@ -19,54 +19,54 @@
|
|||
[12.366053, "i", "\r"]
|
||||
[12.366528, "o", "\u001b[12;119Hus\b\n \b"]
|
||||
[13.9697, "o", "Getting image source signatures\r\n \b"]
|
||||
[13.976151, "o", "\u001b[H\u001b[Kit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.io/zot/\r\n\u001b[K\u001b[1;119H/pkg/api/controller.go:103\",\"time\":\"2022-04-11T07:05:55.969880822Z\",\"message\":\"configuration settings\"}\r\n\u001b[K{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"max. inotify watches\":\"2147483647\",\"goroutine\":1,\"caller\":\"zotregis\r\n\u001b[K\u001b[3;119Hstry.io/zot/pkg/api/controller.go:91\",\"time\":\"2022-04-11T07:05:55.969983384Z\",\"message\":\"runtime params\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34660\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"6.272µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"\r\n\u001b[K\u001b[6;119H\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":43,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\"\r\n\u001b[K\u001b[7;119H\",\"time\":\"2022-04-11T07:06:05.613288336Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[6B"]
|
||||
[13.977798, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b\r\n\u001b[K\u001b[1;119Hb3d348b9eb9ca7df: no such file or directory\",\"blob\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266\r\n\u001b[K\u001b[2;119H6a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":24,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"time\r\n\u001b[K\u001b[3;119He\":\"2022-04-11T07:06:05.614945807Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"message\":\"failed to st\r\n\u001b[K\u001b[4;119Htat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[6;119Hdf\",\"goroutine\":24,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:06:05.614983628Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[6B"]
|
||||
[13.978188, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[1;119Hdf\",\"goroutine\":24,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:06:05.614983628Z\",\r\n\u001b[K\u001b[2;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34662\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:554879bb\r\n\u001b[K\u001b[4;119Hb300427c7301c"]
|
||||
[13.978246, "o", "1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":404,\"latency\":\"1.220591ms\",\"bodySize\":407,\"heade\r\n\u001b[K\u001b[5;119Hers\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"go\r\n\u001b[K\u001b[6;119Horoutine\":24,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:05.615475481Z\",\"message\":\"HTT\r\n\u001b[K\u001b[7;119HTP API\"}\r\n\u001b[K\u001b[6B"]
|
||||
[14.87882, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b\r\n\u001b[K\u001b[1;119Hb3d348b9eb9ca7df: no such file or directory\",\"blob\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266\r\n\u001b[K\u001b[2;119H6a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":16,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"time\r\n\u001b[K\u001b[3;119He\":\"2022-04-11T07:06:06.515779911Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"message\":\"failed to st\r\n\u001b[K\u001b[4;119Htat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[6;119Hdf\",\"goroutine\":16,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"tim"]
|
||||
[14.878977, "o", "e\":\"2022-04-11T07:06:06.515849472Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[6B\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[1;119Hdf\",\"goroutine\":16,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:06:06.515849472Z\",\r\n\u001b[K\u001b[2;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34664\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:554879bb\r\n\u001b[K\u001b[4;119Hb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":404,\"latency\":\"249.418µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[5;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[6;119Hroutine\":16,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:06.515974487Z\",\"mes"]
|
||||
[13.976151, "o", "\u001b[H\u001b[Kit\":null},\"Log\":{\"Level\":\"debug\",\"Output\":\"\",\"Audit\":\"\"},\"Extensions\":null},\"goroutine\":1,\"caller\":\"zotregistry.dev/zot/\r\n\u001b[K\u001b[1;119H/pkg/api/controller.go:103\",\"time\":\"2022-04-11T07:05:55.969880822Z\",\"message\":\"configuration settings\"}\r\n\u001b[K{\"level\":\"info\",\"cpus\":8,\"max. open files\":1048576,\"max. inotify watches\":\"2147483647\",\"goroutine\":1,\"caller\":\"zotregis\r\n\u001b[K\u001b[3;119Hstry.dev/zot/pkg/api/controller.go:91\",\"time\":\"2022-04-11T07:05:55.969983384Z\",\"message\":\"runtime params\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34660\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"6.272µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"\r\n\u001b[K\u001b[6;119H\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":43,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\"\r\n\u001b[K\u001b[7;119H\",\"time\":\"2022-04-11T07:06:05.613288336Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[6B"]
|
||||
[13.977798, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b\r\n\u001b[K\u001b[1;119Hb3d348b9eb9ca7df: no such file or directory\",\"blob\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266\r\n\u001b[K\u001b[2;119H6a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":24,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"time\r\n\u001b[K\u001b[3;119He\":\"2022-04-11T07:06:05.614945807Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"message\":\"failed to st\r\n\u001b[K\u001b[4;119Htat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[6;119Hdf\",\"goroutine\":24,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:06:05.614983628Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[6B"]
|
||||
[13.978188, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[1;119Hdf\",\"goroutine\":24,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:06:05.614983628Z\",\r\n\u001b[K\u001b[2;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34662\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:554879bb\r\n\u001b[K\u001b[4;119Hb300427c7301c"]
|
||||
[13.978246, "o", "1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":404,\"latency\":\"1.220591ms\",\"bodySize\":407,\"heade\r\n\u001b[K\u001b[5;119Hers\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"go\r\n\u001b[K\u001b[6;119Horoutine\":24,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:05.615475481Z\",\"message\":\"HTT\r\n\u001b[K\u001b[7;119HTP API\"}\r\n\u001b[K\u001b[6B"]
|
||||
[14.87882, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b\r\n\u001b[K\u001b[1;119Hb3d348b9eb9ca7df: no such file or directory\",\"blob\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266\r\n\u001b[K\u001b[2;119H6a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":16,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"time\r\n\u001b[K\u001b[3;119He\":\"2022-04-11T07:06:06.515779911Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"message\":\"failed to st\r\n\u001b[K\u001b[4;119Htat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[6;119Hdf\",\"goroutine\":16,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"tim"]
|
||||
[14.878977, "o", "e\":\"2022-04-11T07:06:06.515849472Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[6B\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7d\r\n\u001b[K\u001b[1;119Hdf\",\"goroutine\":16,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:06:06.515849472Z\",\r\n\u001b[K\u001b[2;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34664\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:554879bb\r\n\u001b[K\u001b[4;119Hb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":404,\"latency\":\"249.418µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[5;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[6;119Hroutine\":16,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:06.515974487Z\",\"mes"]
|
||||
[14.879064, "o", "sage\":\"HTTP\r\n\u001b[K\u001b[7;119HP API\"}\r\n\u001b[K\u001b[6B"]
|
||||
[14.883236, "o", "\u001b[H\u001b[K300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":404,\"latency\":\"249.418µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[1;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[2;119Hroutine\":16,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:06.515974487Z\",\"message\":\"HTTP\r\n\u001b[K\u001b[3;119HP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34666\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[5;119HtusCode\":202,\"latency\":\"2.175563ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-L\r\n\u001b[K\u001b[6;119HLength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":44,\"ca\r\n\u001b[K\u001b[7;119Haller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:06.519784879Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[6B"]
|
||||
[14.883236, "o", "\u001b[H\u001b[K300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":404,\"latency\":\"249.418µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[1;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[2;119Hroutine\":16,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:06.515974487Z\",\"message\":\"HTTP\r\n\u001b[K\u001b[3;119HP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34666\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[5;119HtusCode\":202,\"latency\":\"2.175563ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-L\r\n\u001b[K\u001b[6;119HLength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":44,\"ca\r\n\u001b[K\u001b[7;119Haller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:06.519784879Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[6B"]
|
||||
[14.93024, "o", "Copying blob 554879bb3004 [=====>--------------------------------] 127.2KiB / 754.7KiB\r\n \b"]
|
||||
[14.991143, "o", "\u001b[A\u001b[KCopying blob 554879bb3004 done\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[21A\u001b[A\u001b[KCopying blob 554879bb3004 done\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[21A"]
|
||||
[14.991427, "o", "\u001b[H\u001b[KusCode\":202,\"latency\":\"2.175563ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-L\r\n\u001b[K\u001b[1;119HLength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":44,\"ca\r\n\u001b[K\u001b[2;119Haller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:06.519784879Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34668\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/4de30c\r\n\u001b[K\u001b[4;119Hc2a-e5cc-4085-8c6c-e3103ed60d2d\",\"statusCode\":202,\"latency\":\"105.945581ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"g\r\n\u001b[K\u001b[5;119Hgzip\"],\"Connection\":[\"close\"],\"Content-Length\":[\"772806\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distributi\r\n\u001b[K\u001b[6;119Hion-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":27,\"caller\":\"zotregistry.io/zot/pkg/a\r\n\u001b[K\u001b[7;119Hapi/session.go:132\",\"time\":\"2022-04-11T07:06:06.628370736Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[14.994159, "o", "\u001b[H\u001b[Kller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:06.519784879Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34668\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/4de30c\r\n\u001b[K\u001b[2;119Hc2a-e5cc-4085-8c6c-e3103ed60d2d\",\"statusCode\":202,\"latency\":\"105.945581ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"g\r\n\u001b[K\u001b[3;119Hgzip\"],\"Connection\":[\"close\"],\"Content-Length\":[\"772806\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distributi\r\n\u001b[K\u001b[4;119Hion-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":27,\"caller\":\"zotregistry.io/zot/pkg/a\r\n\u001b[K\u001b[5;119Hapi/session.go:132\",\"time\":\"2022-04-11T07:06:06.628370736Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":50,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T07:06:06.631316445Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[7B"]
|
||||
[14.995433, "o", "\u001b[H\u001b[Kpi/session.go:132\",\"time\":\"2022-04-11T07:06:06.628370736Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":50,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[2;119H4-11T07:06:06.631316445Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/4de30c2a-e5cc-4085-8c6c-e3103ed60d2d\",\"dstDigest\":\"sha256:55\r\n\u001b[K\u001b[4;119H54879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/554879bb3\r\n\u001b[K\u001b[5;119H300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":50,\"caller\":\"zotregistry.io/zot/pkg/storage/storag\r\n\u001b[K\u001b[6;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:06:06.632536576Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[7;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K\u001b[7B"]
|
||||
[14.997444, "o", "\u001b[H\u001b[Kegistry.io/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:06:06.634379996Z\",\"caller\":\"zotregistry.io/zot/pkg\r\n\u001b[K\u001b[1;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34670\",\"method\":\"PUT\",\"path\":\"/v2/busybox/blobs/uploads/4de30c2a\r\n\u001b[K\u001b[3;119Ha-e5cc-4085-8c6c-e3103ed60d2d?digest=sha256%3A554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusC\r\n\u001b[K\u001b[4;119HCode\":201,\"latency\":\"3.227508ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Leng\r\n\u001b[K\u001b[5;119Hgth\":[\"0\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\r\n\u001b[K\u001b[6;119H[\"Go-http-client/1.1\"]},\"goroutine\":50,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:06.\r\n\u001b[K\u001b[7;119H.634458814Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[15.4281, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/busybox/blobs/sha256/02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a0\r\n\u001b[K\u001b[1;119H096cda667e5fdc8b: no such file or directory\",\"blob\":\"/var/lib/registry/busybox/blobs/sha256/02611b034a2eaf78ac6fca8f91b8\r\n\u001b[K\u001b[2;119H88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":29,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"time\r\n\u001b[K\u001b[3;119He\":\"2022-04-11T07:06:07.065179341Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1272\",\"message\":\"failed to st\r\n\u001b[K\u001b[4;119Htat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8\r\n\u001b[K\u001b[6;119H8b\",\"goroutine\":29,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"tim"]
|
||||
[15.428256, "o", "e\":\"2022-04-11T07:06:07.065243141Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[7B\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8\r\n\u001b[K\u001b[1;119H8b\",\"goroutine\":29,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:06:07.065243141Z\",\r\n\u001b[K\u001b[2;119H,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34672\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:02611b03\r\n\u001b[K\u001b[4;119H34a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusCode\":404,\"latency\":\"227.828µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[5;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[6;119Hroutine\":29,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:07.065336296Z\",\"mes"]
|
||||
[14.991427, "o", "\u001b[H\u001b[KusCode\":202,\"latency\":\"2.175563ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-L\r\n\u001b[K\u001b[1;119HLength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":44,\"ca\r\n\u001b[K\u001b[2;119Haller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:06.519784879Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34668\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/4de30c\r\n\u001b[K\u001b[4;119Hc2a-e5cc-4085-8c6c-e3103ed60d2d\",\"statusCode\":202,\"latency\":\"105.945581ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"g\r\n\u001b[K\u001b[5;119Hgzip\"],\"Connection\":[\"close\"],\"Content-Length\":[\"772806\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distributi\r\n\u001b[K\u001b[6;119Hion-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":27,\"caller\":\"zotregistry.dev/zot/pkg/a\r\n\u001b[K\u001b[7;119Hapi/session.go:132\",\"time\":\"2022-04-11T07:06:06.628370736Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[14.994159, "o", "\u001b[H\u001b[Kller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:06.519784879Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34668\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/4de30c\r\n\u001b[K\u001b[2;119Hc2a-e5cc-4085-8c6c-e3103ed60d2d\",\"statusCode\":202,\"latency\":\"105.945581ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"g\r\n\u001b[K\u001b[3;119Hgzip\"],\"Connection\":[\"close\"],\"Content-Length\":[\"772806\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distributi\r\n\u001b[K\u001b[4;119Hion-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":27,\"caller\":\"zotregistry.dev/zot/pkg/a\r\n\u001b[K\u001b[5;119Hapi/session.go:132\",\"time\":\"2022-04-11T07:06:06.628370736Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":50,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T07:06:06.631316445Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[7B"]
|
||||
[14.995433, "o", "\u001b[H\u001b[Kpi/session.go:132\",\"time\":\"2022-04-11T07:06:06.628370736Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":50,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[2;119H4-11T07:06:06.631316445Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/4de30c2a-e5cc-4085-8c6c-e3103ed60d2d\",\"dstDigest\":\"sha256:55\r\n\u001b[K\u001b[4;119H54879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/554879bb3\r\n\u001b[K\u001b[5;119H300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":50,\"caller\":\"zotregistry.dev/zot/pkg/storage/storag\r\n\u001b[K\u001b[6;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:06:06.632536576Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[7;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K\u001b[7B"]
|
||||
[14.997444, "o", "\u001b[H\u001b[Kegistry.dev/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:06:06.634379996Z\",\"caller\":\"zotregistry.dev/zot/pkg\r\n\u001b[K\u001b[1;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34670\",\"method\":\"PUT\",\"path\":\"/v2/busybox/blobs/uploads/4de30c2a\r\n\u001b[K\u001b[3;119Ha-e5cc-4085-8c6c-e3103ed60d2d?digest=sha256%3A554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusC\r\n\u001b[K\u001b[4;119HCode\":201,\"latency\":\"3.227508ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Leng\r\n\u001b[K\u001b[5;119Hgth\":[\"0\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\r\n\u001b[K\u001b[6;119H[\"Go-http-client/1.1\"]},\"goroutine\":50,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:06.\r\n\u001b[K\u001b[7;119H.634458814Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[15.4281, "o", "\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"stat /var/lib/registry/busybox/blobs/sha256/02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a0\r\n\u001b[K\u001b[1;119H096cda667e5fdc8b: no such file or directory\",\"blob\":\"/var/lib/registry/busybox/blobs/sha256/02611b034a2eaf78ac6fca8f91b8\r\n\u001b[K\u001b[2;119H88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":29,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"time\r\n\u001b[K\u001b[3;119He\":\"2022-04-11T07:06:07.065179341Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1272\",\"message\":\"failed to st\r\n\u001b[K\u001b[4;119Htat blob\"}\r\n\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8\r\n\u001b[K\u001b[6;119H8b\",\"goroutine\":29,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"tim"]
|
||||
[15.428256, "o", "e\":\"2022-04-11T07:06:07.065243141Z\",\r\n\u001b[K\u001b[7;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K\u001b[7B\u001b[H\u001b[K{\"level\":\"error\",\"error\":\"cache: miss\",\"digest\":\"sha256:02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8\r\n\u001b[K\u001b[1;119H8b\",\"goroutine\":29,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"time\":\"2022-04-11T07:06:07.065243141Z\",\r\n\u001b[K\u001b[2;119H,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1277\",\"message\":\"cache: not found\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34672\",\"method\":\"HEAD\",\"path\":\"/v2/busybox/blobs/sha256:02611b03\r\n\u001b[K\u001b[4;119H34a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusCode\":404,\"latency\":\"227.828µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[5;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[6;119Hroutine\":29,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:07.065336296Z\",\"mes"]
|
||||
[15.428324, "o", "sage\":\"HTTP\r\n\u001b[K\u001b[7;119HP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[15.429447, "o", "\u001b[H\u001b[K4a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusCode\":404,\"latency\":\"227.828µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[1;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[2;119Hroutine\":29,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:07.065336296Z\",\"message\":\"HTTP\r\n\u001b[K\u001b[3;119HP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34674\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[5;119HtusCode\":202,\"latency\":\"124.534µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Le\r\n\u001b[K\u001b[6;119Hength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":31,\"cal\r\n\u001b[K\u001b[7;119Hller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:07.066575292Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[15.429447, "o", "\u001b[H\u001b[K4a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusCode\":404,\"latency\":\"227.828µs\",\"bodySize\":407,\"header\r\n\u001b[K\u001b[1;119Hrs\":{\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"gor\r\n\u001b[K\u001b[2;119Hroutine\":29,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:07.065336296Z\",\"message\":\"HTTP\r\n\u001b[K\u001b[3;119HP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34674\",\"method\":\"POST\",\"path\":\"/v2/busybox/blobs/uploads/\",\"stat\r\n\u001b[K\u001b[5;119HtusCode\":202,\"latency\":\"124.534µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Le\r\n\u001b[K\u001b[6;119Hength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":31,\"cal\r\n\u001b[K\u001b[7;119Hller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:07.066575292Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[7B"]
|
||||
[15.430549, "o", "Copying config 02611b034a [======================================] 575.0b / 575.0b\r\n \b\u001b[A\u001b[KCopying config 02611b034a done\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[20A"]
|
||||
[15.430952, "o", "\u001b[H\u001b[KusCode\":202,\"latency\":\"124.534µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Le\r\n\u001b[K\u001b[1;119Hength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":31,\"cal\r\n\u001b[K\u001b[2;119Hller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:07.066575292Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34676\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/4bd8f0\r\n\u001b[K\u001b[4;119H0f8-c316-441d-8b87-2313c992695e\",\"statusCode\":202,\"latency\":\"96.551µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"\r\n\u001b[K\u001b[5;119H\"],\"Connection\":[\"close\"],\"Content-Length\":[\"575\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api-\r\n\u001b[K\u001b[6;119H-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":65,\"caller\":\"zotregistry.io/zot/pkg/api/sess\r\n\u001b[K\u001b[7;119Hsion.go:132\",\"time\":\"2022-04-11T07:06:07.068133827Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[8B"]
|
||||
[15.432067, "o", "\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:07.066575292Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34676\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/4bd8f0\r\n\u001b[K\u001b[2;119H0f8-c316-441d-8b87-2313c992695e\",\"statusCode\":202,\"latency\":\"96.551µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"\r\n\u001b[K\u001b[3;119H\"],\"Connection\":[\"close\"],\"Content-Length\":[\"575\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api-\r\n\u001b[K\u001b[4;119H-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":65,\"caller\":\"zotregistry.io/zot/pkg/api/sess\r\n\u001b[K\u001b[5;119Hsion.go:132\",\"time\":\"2022-04-11T07:06:07.068133827Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":81,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T07:06:07.069366321Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[8B"]
|
||||
[15.432186, "o", "\u001b[H\u001b[Kion.go:132\",\"time\":\"2022-04-11T07:06:07.068133827Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":81,\"caller\":\"zotregistry.io/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[2;119H4-11T07:06:07.069366321Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/4bd8f0f8-c316-441d-8b87-2313c992695e\",\"dstDigest\":\"sha256:02\r\n\u001b[K\u001b[4;119H2611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/02611b034\r\n\u001b[K\u001b[5;119H4a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":81,\"caller\":\"zotregistry.io/zot/pkg/storage/storag\r\n\u001b[K\u001b[6;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:06:07.069497657Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_f"]
|
||||
[15.430952, "o", "\u001b[H\u001b[KusCode\":202,\"latency\":\"124.534µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Le\r\n\u001b[K\u001b[1;119Hength\":[\"0\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":31,\"cal\r\n\u001b[K\u001b[2;119Hller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:07.066575292Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34676\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/4bd8f0\r\n\u001b[K\u001b[4;119H0f8-c316-441d-8b87-2313c992695e\",\"statusCode\":202,\"latency\":\"96.551µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"\r\n\u001b[K\u001b[5;119H\"],\"Connection\":[\"close\"],\"Content-Length\":[\"575\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api-\r\n\u001b[K\u001b[6;119H-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":65,\"caller\":\"zotregistry.dev/zot/pkg/api/sess\r\n\u001b[K\u001b[7;119Hsion.go:132\",\"time\":\"2022-04-11T07:06:07.068133827Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[8B"]
|
||||
[15.432067, "o", "\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:07.066575292Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34676\",\"method\":\"PATCH\",\"path\":\"/v2/busybox/blobs/uploads/4bd8f0\r\n\u001b[K\u001b[2;119H0f8-c316-441d-8b87-2313c992695e\",\"statusCode\":202,\"latency\":\"96.551µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"\r\n\u001b[K\u001b[3;119H\"],\"Connection\":[\"close\"],\"Content-Length\":[\"575\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api-\r\n\u001b[K\u001b[4;119H-Version\":[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":65,\"caller\":\"zotregistry.dev/zot/pkg/api/sess\r\n\u001b[K\u001b[5;119Hsion.go:132\",\"time\":\"2022-04-11T07:06:07.068133827Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":81,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[7;119H4-11T07:06:07.069366321Z\",\"message\":\"DEBUG\"}\r\n\u001b[K\u001b[8B"]
|
||||
[15.432186, "o", "\u001b[H\u001b[Kion.go:132\",\"time\":\"2022-04-11T07:06:07.068133827Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"r.ContentLength\":0,\"goroutine\":81,\"caller\":\"zotregistry.dev/zot/pkg/api/routes.go:1040\",\"time\":\"2022-04\r\n\u001b[K\u001b[2;119H4-11T07:06:07.069366321Z\",\"message\":\"DEBUG\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/4bd8f0f8-c316-441d-8b87-2313c992695e\",\"dstDigest\":\"sha256:02\r\n\u001b[K\u001b[4;119H2611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/02611b034\r\n\u001b[K\u001b[5;119H4a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":81,\"caller\":\"zotregistry.dev/zot/pkg/storage/storag\r\n\u001b[K\u001b[6;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:06:07.069497657Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_f"]
|
||||
[15.432311, "o", "s.go:1146\",\"mes\r\n\u001b[K\u001b[7;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K\u001b[8B"]
|
||||
[15.434934, "o", "\u001b[H\u001b[K611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/02611b034\r\n\u001b[K\u001b[1;119H4a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":81,\"caller\":\"zotregistry.io/zot/pkg/storage/storag\r\n\u001b[K\u001b[2;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:06:07.069497657Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[3;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/4bd8f0f8-c316-441d-8b87-2313c992695e\",\"dst\":\"/var/lib/regist\r\n\u001b[K\u001b[5;119Htry/busybox/blobs/sha256/02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":81,\"caller\":\"zotr\r\n\u001b[K\u001b[6;119Hregistry.io/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:0"]
|
||||
[15.435064, "o", "6:07.072154826Z\",\"caller\":\"zotregistry.io/zot/pkg\r\n\u001b[K\u001b[7;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K\u001b[8B\u001b[H\u001b[Kegistry.io/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:06:07.072154826Z\",\"caller\":\"zotregistry.io/zot/pkg\r\n\u001b[K\u001b[1;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34678\",\"method\":\"PUT\",\"path\":\"/v2/busybox/blobs/uploads/4bd8f0f8\r\n\u001b[K\u001b[3;119H8-c316-441d-8b87-2313c992695e?digest=sha256%3A02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusC\r\n\u001b[K\u001b[4;119HCode\":201,\"latency\":\"2.901687ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Leng\r\n\u001b[K\u001b[5;119Hgth\":[\"0\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\r\n\u001b[K\u001b[6;119H[\"Go-http-client/1.1\"]},\"goroutine\":81,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:07.\r\n\u001b[K\u001b[7;119H.072255094Z\",\"message\":\"HTTP API"]
|
||||
[15.434934, "o", "\u001b[H\u001b[K611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"dst\":\"/var/lib/registry/busybox/blobs/sha256/02611b034\r\n\u001b[K\u001b[1;119H4a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":81,\"caller\":\"zotregistry.dev/zot/pkg/storage/storag\r\n\u001b[K\u001b[2;119Hge_fs.go:1146\",\"time\":\"2022-04-11T07:06:07.069497657Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:1146\",\"mes\r\n\u001b[K\u001b[3;119Hssage\":\"dedupe: enter\"}\r\n\u001b[K{\"level\":\"debug\",\"src\":\"/var/lib/registry/busybox/.uploads/4bd8f0f8-c316-441d-8b87-2313c992695e\",\"dst\":\"/var/lib/regist\r\n\u001b[K\u001b[5;119Htry/busybox/blobs/sha256/02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"goroutine\":81,\"caller\":\"zotr\r\n\u001b[K\u001b[6;119Hregistry.dev/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:0"]
|
||||
[15.435064, "o", "6:07.072154826Z\",\"caller\":\"zotregistry.dev/zot/pkg\r\n\u001b[K\u001b[7;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K\u001b[8B\u001b[H\u001b[Kegistry.dev/zot/pkg/storage/storage_fs.go:1171\",\"time\":\"2022-04-11T07:06:07.072154826Z\",\"caller\":\"zotregistry.dev/zot/pkg\r\n\u001b[K\u001b[1;119Hg/storage/storage_fs.go:1171\",\"message\":\"dedupe: rename\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34678\",\"method\":\"PUT\",\"path\":\"/v2/busybox/blobs/uploads/4bd8f0f8\r\n\u001b[K\u001b[3;119H8-c316-441d-8b87-2313c992695e?digest=sha256%3A02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusC\r\n\u001b[K\u001b[4;119HCode\":201,\"latency\":\"2.901687ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Leng\r\n\u001b[K\u001b[5;119Hgth\":[\"0\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\r\n\u001b[K\u001b[6;119H[\"Go-http-client/1.1\"]},\"goroutine\":81,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:07.\r\n\u001b[K\u001b[7;119H.072255094Z\",\"message\":\"HTTP API"]
|
||||
[15.435105, "o", "\"}\r\n\u001b[K\u001b[8B"]
|
||||
[15.436419, "o", "Writing manifest to image destination\r\n \b"]
|
||||
[15.438168, "o", "\u001b[H\u001b[K-c316-441d-8b87-2313c992695e?digest=sha256%3A02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusC\r\n\u001b[K\u001b[1;119HCode\":201,\"latency\":\"2.901687ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Leng\r\n\u001b[K\u001b[2;119Hgth\":[\"0\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\r\n\u001b[K\u001b[3;119H[\"Go-http-client/1.1\"]},\"goroutine\":81,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:07.\r\n\u001b[K\u001b[4;119H.072255094Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"blobPath\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d3\r\n\u001b[K\u001b[6;119H348b9eb9ca7df\",\"reference\":\"latest\",\"goroutine\":67,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:516\",\"time\":\"2\r\n\u001b[K\u001b[7;119H2022-04-11T07:06:07.075393395Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:516\",\"message\":\"manifest layers\"}\r\n\u001b[K\u001b[9B"]
|
||||
[15.438654, "o", "\u001b[H\u001b[K48b9eb9ca7df\",\"reference\":\"latest\",\"goroutine\":67,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:516\",\"time\":\"2\r\n\u001b[K\u001b[1;119H2022-04-11T07:06:07.075393395Z\",\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:516\",\"message\":\"manifest layers"]
|
||||
[15.438752, "o", "\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":67,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:06:07.075889206Z\",\"message\":\"GC: got r"]
|
||||
[15.438822, "o", "efe\r\n\u001b[K\u001b[4;119Herence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":67,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:06:07.075927247Z"]
|
||||
[15.439097, "o", "\",\"message\":\"GC: marking \r\n\u001b[K\u001b[7;119H from root\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[Kler\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:06:07.07609407Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[1;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"gith"]
|
||||
[15.439232, "o", "ub.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":67,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:06:07.076199538Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":67,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:06:07.076258038Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119H"]
|
||||
[15.439323, "o", "outside permitted packages\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[K.076442535Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.oci.image.layer.v1.tar+gzip of blob\r\n\u001b[K\u001b[1;119Hb sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":67,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:06:07.076485014Z\",\"message\":\"<- ws.recurs\r\n\u001b[K"]
|
||||
[15.439375, "o", "\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":67,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:06:07.076513237Z\",\"message\":"]
|
||||
[15.439454, "o", "\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[Ke\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":67,\"caller\":\"zotregistry.io/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:06:07\r\n\u001b[K\u001b[2;119H7.076597586Z\",\"message\":\"garbage collected 0 blobs\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34680\",\"method\":\"PUT\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[4;119HatusCode\":201,\"latency\":\"1.586418ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-\r\n\u001b[K\u001b[5;119H-Leng"]
|
||||
[15.439492, "o", "th\":[\"347\"],\"Content-Type\":[\"application/vnd.oci.image.manifest.v1+json\"],\"Docker-Distribution-Api-Version\":[\"regis\r\n\u001b[K\u001b[6;119Hstry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":67,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[7;119Hme\":\"2022-04-11T07:06:07.076634204Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[9BStoring signatures\r\n \b"]
|
||||
[15.438168, "o", "\u001b[H\u001b[K-c316-441d-8b87-2313c992695e?digest=sha256%3A02611b034a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusC\r\n\u001b[K\u001b[1;119HCode\":201,\"latency\":\"2.901687ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-Leng\r\n\u001b[K\u001b[2;119Hgth\":[\"0\"],\"Content-Type\":[\"application/octet-stream\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\r\n\u001b[K\u001b[3;119H[\"Go-http-client/1.1\"]},\"goroutine\":81,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:07.\r\n\u001b[K\u001b[4;119H.072255094Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"blobPath\":\"/var/lib/registry/busybox/blobs/sha256/554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d3\r\n\u001b[K\u001b[6;119H348b9eb9ca7df\",\"reference\":\"latest\",\"goroutine\":67,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:516\",\"time\":\"2\r\n\u001b[K\u001b[7;119H2022-04-11T07:06:07.075393395Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:516\",\"message\":\"manifest layers\"}\r\n\u001b[K\u001b[9B"]
|
||||
[15.438654, "o", "\u001b[H\u001b[K48b9eb9ca7df\",\"reference\":\"latest\",\"goroutine\":67,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:516\",\"time\":\"2\r\n\u001b[K\u001b[1;119H2022-04-11T07:06:07.075393395Z\",\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:516\",\"message\":\"manifest layers"]
|
||||
[15.438752, "o", "\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":67,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:06:07.075889206Z\",\"message\":\"GC: got r"]
|
||||
[15.438822, "o", "efe\r\n\u001b[K\u001b[4;119Herence\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":67,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:06:07.075927247Z"]
|
||||
[15.439097, "o", "\",\"message\":\"GC: marking \r\n\u001b[K\u001b[7;119H from root\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[Kler\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:06:07.07609407Z\",\"message\":\"-> ws.recurse\r\n\u001b[K\u001b[1;119He\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"gith"]
|
||||
[15.439232, "o", "ub.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":67,\"caller\r\n\u001b[K\u001b[3;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:06:07.076199538Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[4;119Houtside permitted packages\"}\r\n\u001b[K{\"level\":\"debug\",\"name\":\"time::Time\",\"v1path\":\"github.com/opencontainers/image-spec/specs-go/v1\",\"goroutine\":67,\"caller\r\n\u001b[K\u001b[6;119Hr\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:06:07.076258038Z\",\"message\":\"detected jump o\r\n\u001b[K\u001b[7;119H"]
|
||||
[15.439323, "o", "outside permitted packages\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[K.076442535Z\",\"message\":\"skipping walk into non-parseable media-type application/vnd.oci.image.layer.v1.tar+gzip of blob\r\n\u001b[K\u001b[1;119Hb sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:554879bb300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"goroutine\":67,\"cal\r\n\u001b[K\u001b[3;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:06:07.076485014Z\",\"message\":\"<- ws.recurs\r\n\u001b[K"]
|
||||
[15.439375, "o", "\u001b[4;119Hse\"}\r\n\u001b[K{\"level\":\"debug\",\"digest\":\"sha256:d11abb379758784ce3c263c2fe3eabe6baf629335037baeb12fa2c5acb960182\",\"goroutine\":67,\"cal\r\n\u001b[K\u001b[6;119Hller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:06:07.076513237Z\",\"message\":"]
|
||||
[15.439454, "o", "\"<- ws.recurs\r\n\u001b[K\u001b[7;119Hse\"}\r\n\u001b[K\u001b[9B\u001b[H\u001b[Ke\"}\r\n\u001b[K{\"level\":\"debug\",\"goroutine\":67,\"caller\":\"zotregistry.dev/zot/pkg/storage/storage_fs.go:143\",\"time\":\"2022-04-11T07:06:07\r\n\u001b[K\u001b[2;119H7.076597586Z\",\"message\":\"garbage collected 0 blobs\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34680\",\"method\":\"PUT\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[4;119HatusCode\":201,\"latency\":\"1.586418ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-\r\n\u001b[K\u001b[5;119H-Leng"]
|
||||
[15.439492, "o", "th\":[\"347\"],\"Content-Type\":[\"application/vnd.oci.image.manifest.v1+json\"],\"Docker-Distribution-Api-Version\":[\"regis\r\n\u001b[K\u001b[6;119Hstry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":67,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[7;119Hme\":\"2022-04-11T07:06:07.076634204Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[9BStoring signatures\r\n \b"]
|
||||
[15.442099, "o", "$ "]
|
||||
[20.301647, "i", "skopeo --insecure-policy copy --src-tls-verify=false docker://localhost:5000/busybox:latest oci:/tmp/images:busybox:latest"]
|
||||
[20.302726, "o", "\r\u001b[8A\u001b[K$\b\n\u001b[K$ skopeo --insecure-policy copy --format=oci --dest-tls-verify=false docker://busybox:latest docker://localhost:5000/bu\r\n\u001b[K\u001b[12;119Husybox:latest\r\n\u001b[KGetting image source signatures\r\n\u001b[KCopying blob 554879bb3004 done\r\n\u001b[KCopying config 02611b034a done\r\n\u001b[KWriting manifest to image destination\r\n\u001b[KStoring signatures\r\n\u001b[K$ skopeo --insecure-policy copy --src-tls-verify=false docker://localhost:5000/busybox:latest oci:/tmp/images:busybox:l\r\n\u001b[K\u001b[19;119Hlatest\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[20;6H"]
|
||||
[22.028134, "i", "\r"]
|
||||
[22.02882, "o", "\u001b[19;119Hla\b\n \b"]
|
||||
[22.071708, "o", "\u001b[H\u001b[KtusCode\":201,\"latency\":\"1.586418ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-\r\n\u001b[K\u001b[1;119H-Length\":[\"347\"],\"Content-Type\":[\"application/vnd.oci.image.manifest.v1+json\"],\"Docker-Distribution-Api-Version\":[\"regis\r\n\u001b[K\u001b[2;119Hstry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":67,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[3;119Hme\":\"2022-04-11T07:06:07.076634204Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34684\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"27.091µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\r\n\u001b[K\u001b[6;119H[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":70,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\r\n\u001b[K\u001b[7;119H2\",\"time\":\"2022-04-11T07:06:13.708818597Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[12B"]
|
||||
[22.073391, "o", "\u001b[H\u001b[K\",\"time\":\"2022-04-11T07:06:13.708818597Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34686\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[2;119HatusCode\":200,\"latency\":\"714.24µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.oci.image.manifest.v1+json\",\"app\r\n\u001b[K\u001b[3;119Hplication/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.docker.distribution.manifest.v1+prettyjws\",\"applica\r\n\u001b[K\u001b[4;119Hation/vnd.docker.distribution.manifest.v1+json\",\"application/vnd.docker.distribution.manifest.list.v2+json\",\"application\r\n\u001b[K\u001b[5;119Hn/vnd.oci.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"re\r\n\u001b[K\u001b[6;119Hegistry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":72,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"\r\n\u001b[K\u001b[7;119H\"time\":\"2022-04-11T07:06:13.710470248Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[12B"]
|
||||
[22.071708, "o", "\u001b[H\u001b[KtusCode\":201,\"latency\":\"1.586418ms\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Content-\r\n\u001b[K\u001b[1;119H-Length\":[\"347\"],\"Content-Type\":[\"application/vnd.oci.image.manifest.v1+json\"],\"Docker-Distribution-Api-Version\":[\"regis\r\n\u001b[K\u001b[2;119Hstry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":67,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"tim\r\n\u001b[K\u001b[3;119Hme\":\"2022-04-11T07:06:07.076634204Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34684\",\"method\":\"GET\",\"path\":\"/v2/\",\"statusCode\":200,\"latency\":\"\r\n\u001b[K\u001b[5;119H\"27.091µs\",\"bodySize\":0,\"headers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\r\n\u001b[K\u001b[6;119H[\"registry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":70,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\r\n\u001b[K\u001b[7;119H2\",\"time\":\"2022-04-11T07:06:13.708818597Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[12B"]
|
||||
[22.073391, "o", "\u001b[H\u001b[K\",\"time\":\"2022-04-11T07:06:13.708818597Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34686\",\"method\":\"GET\",\"path\":\"/v2/busybox/manifests/latest\",\"sta\r\n\u001b[K\u001b[2;119HatusCode\":200,\"latency\":\"714.24µs\",\"bodySize\":347,\"headers\":{\"Accept\":[\"application/vnd.oci.image.manifest.v1+json\",\"app\r\n\u001b[K\u001b[3;119Hplication/vnd.docker.distribution.manifest.v2+json\",\"application/vnd.docker.distribution.manifest.v1+prettyjws\",\"applica\r\n\u001b[K\u001b[4;119Hation/vnd.docker.distribution.manifest.v1+json\",\"application/vnd.docker.distribution.manifest.list.v2+json\",\"application\r\n\u001b[K\u001b[5;119Hn/vnd.oci.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"re\r\n\u001b[K\u001b[6;119Hegistry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":72,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"\r\n\u001b[K\u001b[7;119H\"time\":\"2022-04-11T07:06:13.710470248Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[12B"]
|
||||
[22.073498, "o", "Getting image source signatures\r\n \b"]
|
||||
[22.075134, "o", "\u001b[H\u001b[K/vnd.oci.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"re\r\n\u001b[K\u001b[1;119Hegistry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":72,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"\r\n\u001b[K\u001b[2;119H\"time\":\"2022-04-11T07:06:13.710470248Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34688\",\"method\":\"GET\",\"path\":\"/v2/busybox/blobs/sha256:554879bb3\r\n\u001b[K\u001b[4;119H300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":200,\"latency\":\"442.21µs\",\"bodySize\":772806,\"heade\r\n\u001b[K\u001b[5;119Hers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":\r\n\u001b[K\u001b[6;119H:[\"Go-http-client/1.1\"]},\"goroutine\":74,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:13\r\n\u001b[K\u001b[7;119H3.712299071Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[13B"]
|
||||
[22.075134, "o", "\u001b[H\u001b[K/vnd.oci.image.index.v1+json\"],\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"re\r\n\u001b[K\u001b[1;119Hegistry/2.0\"],\"User-Agent\":[\"Go-http-client/1.1\"]},\"goroutine\":72,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"\r\n\u001b[K\u001b[2;119H\"time\":\"2022-04-11T07:06:13.710470248Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34688\",\"method\":\"GET\",\"path\":\"/v2/busybox/blobs/sha256:554879bb3\r\n\u001b[K\u001b[4;119H300427c7301c1cbdf266a7eba24a85b10d19f270b3d348b9eb9ca7df\",\"statusCode\":200,\"latency\":\"442.21µs\",\"bodySize\":772806,\"heade\r\n\u001b[K\u001b[5;119Hers\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":\r\n\u001b[K\u001b[6;119H:[\"Go-http-client/1.1\"]},\"goroutine\":74,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:13\r\n\u001b[K\u001b[7;119H3.712299071Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[13B"]
|
||||
[22.085718, "o", "\u001b[KCopying blob 554879bb3004 done\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[14A\u001b[A\u001b[KCopying blob 554879bb3004 done\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[14A"]
|
||||
[22.090243, "o", "\u001b[H\u001b[Krs\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":\r\n\u001b[K\u001b[1;119H:[\"Go-http-client/1.1\"]},\"goroutine\":74,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:13\r\n\u001b[K\u001b[2;119H3.712299071Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34690\",\"method\":\"GET\",\"path\":\"/v2/busybox/blobs/sha256:02611b034\r\n\u001b[K\u001b[4;119H4a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusCode\":200,\"latency\":\"175.64µs\",\"bodySize\":575,\"headers\"\r\n\u001b[K\u001b[5;119H\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"G\r\n\u001b[K\u001b[6;119HGo-http-client/1.1\"]},\"goroutine\":76,\"caller\":\"zotregistry.io/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:13.72\r\n\u001b[K\u001b[7;119H27285665Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[14B"]
|
||||
[22.090243, "o", "\u001b[H\u001b[Krs\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":\r\n\u001b[K\u001b[1;119H:[\"Go-http-client/1.1\"]},\"goroutine\":74,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:13\r\n\u001b[K\u001b[2;119H3.712299071Z\",\"message\":\"HTTP API\"}\r\n\u001b[K{\"level\":\"info\",\"module\":\"http\",\"clientIP\":\"10.0.2.100:34690\",\"method\":\"GET\",\"path\":\"/v2/busybox/blobs/sha256:02611b034\r\n\u001b[K\u001b[4;119H4a2eaf78ac6fca8f91b88cd4c83794e3713e547a096cda667e5fdc8b\",\"statusCode\":200,\"latency\":\"175.64µs\",\"bodySize\":575,\"headers\"\r\n\u001b[K\u001b[5;119H\":{\"Accept-Encoding\":[\"gzip\"],\"Connection\":[\"close\"],\"Docker-Distribution-Api-Version\":[\"registry/2.0\"],\"User-Agent\":[\"G\r\n\u001b[K\u001b[6;119HGo-http-client/1.1\"]},\"goroutine\":76,\"caller\":\"zotregistry.dev/zot/pkg/api/session.go:132\",\"time\":\"2022-04-11T07:06:13.72\r\n\u001b[K\u001b[7;119H27285665Z\",\"message\":\"HTTP API\"}\r\n\u001b[K\u001b[14B"]
|
||||
[22.090622, "o", "Copying config 02611b034a [======================================] 575.0b / 575.0b\r\n \b"]
|
||||
[22.090712, "o", "\u001b[A\u001b[KCopying config 02611b034a done\r\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\n\u001b[K\u001b[13A"]
|
||||
[22.091718, "o", "Writing manifest to image destination\r\n \b"]
|
||||
|
|
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 82 KiB |
2
go.mod
|
@ -1,4 +1,4 @@
|
|||
module zotregistry.io/zot
|
||||
module zotregistry.dev/zot
|
||||
|
||||
go 1.20
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ linters-settings:
|
|||
sections:
|
||||
- standard
|
||||
- default
|
||||
- prefix(zotregistry.io/zot)
|
||||
- prefix(zotregistry.dev/zot)
|
||||
wsl:
|
||||
allow-assign-and-anything: true
|
||||
enforce-err-cuddling: true
|
||||
|
|
|
@ -31,13 +31,13 @@ import (
|
|||
"golang.org/x/oauth2"
|
||||
githubOAuth "golang.org/x/oauth2/github"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
apiErr "zotregistry.io/zot/pkg/api/errors"
|
||||
zcommon "zotregistry.io/zot/pkg/common"
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
reqCtx "zotregistry.io/zot/pkg/requestcontext"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
apiErr "zotregistry.dev/zot/pkg/api/errors"
|
||||
zcommon "zotregistry.dev/zot/pkg/common"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
reqCtx "zotregistry.dev/zot/pkg/requestcontext"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -20,21 +20,21 @@ import (
|
|||
. "github.com/smartystreets/goconvey/convey"
|
||||
"gopkg.in/resty.v1"
|
||||
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
extconf "zotregistry.io/zot/pkg/extensions/config"
|
||||
"zotregistry.io/zot/pkg/extensions/monitoring"
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
mTypes "zotregistry.io/zot/pkg/meta/types"
|
||||
reqCtx "zotregistry.io/zot/pkg/requestcontext"
|
||||
"zotregistry.io/zot/pkg/scheduler"
|
||||
"zotregistry.io/zot/pkg/storage"
|
||||
storageConstants "zotregistry.io/zot/pkg/storage/constants"
|
||||
"zotregistry.io/zot/pkg/storage/local"
|
||||
authutils "zotregistry.io/zot/pkg/test/auth"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
"zotregistry.io/zot/pkg/test/mocks"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
extconf "zotregistry.dev/zot/pkg/extensions/config"
|
||||
"zotregistry.dev/zot/pkg/extensions/monitoring"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
mTypes "zotregistry.dev/zot/pkg/meta/types"
|
||||
reqCtx "zotregistry.dev/zot/pkg/requestcontext"
|
||||
"zotregistry.dev/zot/pkg/scheduler"
|
||||
"zotregistry.dev/zot/pkg/storage"
|
||||
storageConstants "zotregistry.dev/zot/pkg/storage/constants"
|
||||
"zotregistry.dev/zot/pkg/storage/local"
|
||||
authutils "zotregistry.dev/zot/pkg/test/auth"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
"zotregistry.dev/zot/pkg/test/mocks"
|
||||
)
|
||||
|
||||
var ErrUnexpectedError = errors.New("error: unexpected error")
|
||||
|
|
|
@ -7,11 +7,11 @@ import (
|
|||
glob "github.com/bmatcuk/doublestar/v4"
|
||||
"github.com/gorilla/mux"
|
||||
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
"zotregistry.io/zot/pkg/common"
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
reqCtx "zotregistry.io/zot/pkg/requestcontext"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
"zotregistry.dev/zot/pkg/common"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
reqCtx "zotregistry.dev/zot/pkg/requestcontext"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -7,8 +7,8 @@ import (
|
|||
|
||||
distspec "github.com/opencontainers/distribution-spec/specs-go"
|
||||
|
||||
extconf "zotregistry.io/zot/pkg/extensions/config"
|
||||
storageConstants "zotregistry.io/zot/pkg/storage/constants"
|
||||
extconf "zotregistry.dev/zot/pkg/extensions/config"
|
||||
storageConstants "zotregistry.dev/zot/pkg/storage/constants"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
@ -9,7 +9,7 @@ import (
|
|||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
)
|
||||
|
||||
func TestMountConfig(t *testing.T) {
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
)
|
||||
|
||||
func TestConfig(t *testing.T) {
|
||||
|
|
|
@ -17,17 +17,17 @@ import (
|
|||
"github.com/gorilla/mux"
|
||||
"github.com/zitadel/oidc/pkg/client/rp"
|
||||
|
||||
"zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
ext "zotregistry.io/zot/pkg/extensions"
|
||||
extconf "zotregistry.io/zot/pkg/extensions/config"
|
||||
"zotregistry.io/zot/pkg/extensions/monitoring"
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
"zotregistry.io/zot/pkg/meta"
|
||||
mTypes "zotregistry.io/zot/pkg/meta/types"
|
||||
"zotregistry.io/zot/pkg/scheduler"
|
||||
"zotregistry.io/zot/pkg/storage"
|
||||
"zotregistry.io/zot/pkg/storage/gc"
|
||||
"zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
ext "zotregistry.dev/zot/pkg/extensions"
|
||||
extconf "zotregistry.dev/zot/pkg/extensions/config"
|
||||
"zotregistry.dev/zot/pkg/extensions/monitoring"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
"zotregistry.dev/zot/pkg/meta"
|
||||
mTypes "zotregistry.dev/zot/pkg/meta/types"
|
||||
"zotregistry.dev/zot/pkg/scheduler"
|
||||
"zotregistry.dev/zot/pkg/storage"
|
||||
"zotregistry.dev/zot/pkg/storage/gc"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -48,28 +48,28 @@ import (
|
|||
"go.etcd.io/bbolt"
|
||||
"gopkg.in/resty.v1"
|
||||
|
||||
"zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
apiErr "zotregistry.io/zot/pkg/api/errors"
|
||||
"zotregistry.io/zot/pkg/cli/server"
|
||||
"zotregistry.io/zot/pkg/common"
|
||||
extconf "zotregistry.io/zot/pkg/extensions/config"
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
"zotregistry.io/zot/pkg/meta"
|
||||
"zotregistry.io/zot/pkg/storage"
|
||||
storageConstants "zotregistry.io/zot/pkg/storage/constants"
|
||||
"zotregistry.io/zot/pkg/storage/gc"
|
||||
storageTypes "zotregistry.io/zot/pkg/storage/types"
|
||||
authutils "zotregistry.io/zot/pkg/test/auth"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
. "zotregistry.io/zot/pkg/test/image-utils"
|
||||
"zotregistry.io/zot/pkg/test/inject"
|
||||
"zotregistry.io/zot/pkg/test/mocks"
|
||||
ociutils "zotregistry.io/zot/pkg/test/oci-utils"
|
||||
"zotregistry.io/zot/pkg/test/signature"
|
||||
tskip "zotregistry.io/zot/pkg/test/skip"
|
||||
"zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
apiErr "zotregistry.dev/zot/pkg/api/errors"
|
||||
"zotregistry.dev/zot/pkg/cli/server"
|
||||
"zotregistry.dev/zot/pkg/common"
|
||||
extconf "zotregistry.dev/zot/pkg/extensions/config"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
"zotregistry.dev/zot/pkg/meta"
|
||||
"zotregistry.dev/zot/pkg/storage"
|
||||
storageConstants "zotregistry.dev/zot/pkg/storage/constants"
|
||||
"zotregistry.dev/zot/pkg/storage/gc"
|
||||
storageTypes "zotregistry.dev/zot/pkg/storage/types"
|
||||
authutils "zotregistry.dev/zot/pkg/test/auth"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
. "zotregistry.dev/zot/pkg/test/image-utils"
|
||||
"zotregistry.dev/zot/pkg/test/inject"
|
||||
"zotregistry.dev/zot/pkg/test/mocks"
|
||||
ociutils "zotregistry.dev/zot/pkg/test/oci-utils"
|
||||
"zotregistry.dev/zot/pkg/test/signature"
|
||||
tskip "zotregistry.dev/zot/pkg/test/skip"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -14,10 +14,10 @@ import (
|
|||
"github.com/gorilla/securecookie"
|
||||
"github.com/gorilla/sessions"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/scheduler"
|
||||
"zotregistry.io/zot/pkg/storage"
|
||||
storageConstants "zotregistry.io/zot/pkg/storage/constants"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/scheduler"
|
||||
"zotregistry.dev/zot/pkg/storage"
|
||||
storageConstants "zotregistry.dev/zot/pkg/storage/constants"
|
||||
)
|
||||
|
||||
const cookiesMaxAge = 7200 // 2h
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package errors
|
||||
|
||||
import (
|
||||
"zotregistry.io/zot/errors"
|
||||
"zotregistry.dev/zot/errors"
|
||||
)
|
||||
|
||||
type Error struct {
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
apiErr "zotregistry.io/zot/pkg/api/errors"
|
||||
apiErr "zotregistry.dev/zot/pkg/api/errors"
|
||||
)
|
||||
|
||||
func TestUnknownCodeError(t *testing.T) {
|
||||
|
|
|
@ -11,8 +11,8 @@ import (
|
|||
|
||||
"github.com/go-ldap/ldap/v3"
|
||||
|
||||
"zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
"zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
)
|
||||
|
||||
type LDAPClient struct {
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
|
||||
"github.com/gorilla/mux"
|
||||
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
)
|
||||
|
||||
type Stack struct {
|
||||
|
|
|
@ -33,24 +33,24 @@ import (
|
|||
"github.com/zitadel/oidc/pkg/client/rp"
|
||||
"github.com/zitadel/oidc/pkg/oidc"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
apiErr "zotregistry.io/zot/pkg/api/errors"
|
||||
zcommon "zotregistry.io/zot/pkg/common"
|
||||
gqlPlayground "zotregistry.io/zot/pkg/debug/gqlplayground"
|
||||
pprof "zotregistry.io/zot/pkg/debug/pprof"
|
||||
debug "zotregistry.io/zot/pkg/debug/swagger"
|
||||
ext "zotregistry.io/zot/pkg/extensions"
|
||||
syncConstants "zotregistry.io/zot/pkg/extensions/sync/constants"
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
"zotregistry.io/zot/pkg/meta"
|
||||
mTypes "zotregistry.io/zot/pkg/meta/types"
|
||||
zreg "zotregistry.io/zot/pkg/regexp"
|
||||
reqCtx "zotregistry.io/zot/pkg/requestcontext"
|
||||
storageCommon "zotregistry.io/zot/pkg/storage/common"
|
||||
storageTypes "zotregistry.io/zot/pkg/storage/types"
|
||||
"zotregistry.io/zot/pkg/test/inject"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
apiErr "zotregistry.dev/zot/pkg/api/errors"
|
||||
zcommon "zotregistry.dev/zot/pkg/common"
|
||||
gqlPlayground "zotregistry.dev/zot/pkg/debug/gqlplayground"
|
||||
pprof "zotregistry.dev/zot/pkg/debug/pprof"
|
||||
debug "zotregistry.dev/zot/pkg/debug/swagger"
|
||||
ext "zotregistry.dev/zot/pkg/extensions"
|
||||
syncConstants "zotregistry.dev/zot/pkg/extensions/sync/constants"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
"zotregistry.dev/zot/pkg/meta"
|
||||
mTypes "zotregistry.dev/zot/pkg/meta/types"
|
||||
zreg "zotregistry.dev/zot/pkg/regexp"
|
||||
reqCtx "zotregistry.dev/zot/pkg/requestcontext"
|
||||
storageCommon "zotregistry.dev/zot/pkg/storage/common"
|
||||
storageTypes "zotregistry.dev/zot/pkg/storage/types"
|
||||
"zotregistry.dev/zot/pkg/test/inject"
|
||||
)
|
||||
|
||||
type RouteHandler struct {
|
||||
|
|
|
@ -23,16 +23,16 @@ import (
|
|||
"github.com/zitadel/oidc/pkg/oidc"
|
||||
"golang.org/x/oauth2"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
mTypes "zotregistry.io/zot/pkg/meta/types"
|
||||
reqCtx "zotregistry.io/zot/pkg/requestcontext"
|
||||
storageTypes "zotregistry.io/zot/pkg/storage/types"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
"zotregistry.io/zot/pkg/test/mocks"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
mTypes "zotregistry.dev/zot/pkg/meta/types"
|
||||
reqCtx "zotregistry.dev/zot/pkg/requestcontext"
|
||||
storageTypes "zotregistry.dev/zot/pkg/storage/types"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
"zotregistry.dev/zot/pkg/test/mocks"
|
||||
)
|
||||
|
||||
const sessionStr = "session"
|
||||
|
|
|
@ -10,8 +10,8 @@ import (
|
|||
"github.com/didip/tollbooth/v6"
|
||||
"github.com/gorilla/mux"
|
||||
|
||||
"zotregistry.io/zot/pkg/extensions/monitoring"
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
"zotregistry.dev/zot/pkg/extensions/monitoring"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
)
|
||||
|
||||
type statusWriter struct {
|
||||
|
|
|
@ -19,8 +19,8 @@ import (
|
|||
ispec "github.com/opencontainers/image-spec/specs-go/v1"
|
||||
"github.com/sigstore/cosign/v2/pkg/oci/remote"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/common"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/common"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
@ -16,12 +16,12 @@ import (
|
|||
. "github.com/smartystreets/goconvey/convey"
|
||||
"gopkg.in/resty.v1"
|
||||
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
"zotregistry.io/zot/pkg/cli/client"
|
||||
extConf "zotregistry.io/zot/pkg/extensions/config"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
"zotregistry.dev/zot/pkg/cli/client"
|
||||
extConf "zotregistry.dev/zot/pkg/extensions/config"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -15,7 +15,7 @@ import (
|
|||
jsoniter "github.com/json-iterator/go"
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -13,8 +13,8 @@ import (
|
|||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/cli/client"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/cli/client"
|
||||
)
|
||||
|
||||
func TestConfigCmdBasics(t *testing.T) {
|
||||
|
|
|
@ -16,12 +16,12 @@ import (
|
|||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
zcommon "zotregistry.io/zot/pkg/common"
|
||||
extconf "zotregistry.io/zot/pkg/extensions/config"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
zcommon "zotregistry.dev/zot/pkg/common"
|
||||
extconf "zotregistry.dev/zot/pkg/extensions/config"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
)
|
||||
|
||||
func TestSearchCVECmd(t *testing.T) {
|
||||
|
|
|
@ -22,23 +22,23 @@ import (
|
|||
ispec "github.com/opencontainers/image-spec/specs-go/v1"
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/cli/client"
|
||||
zcommon "zotregistry.io/zot/pkg/common"
|
||||
extconf "zotregistry.io/zot/pkg/extensions/config"
|
||||
"zotregistry.io/zot/pkg/extensions/monitoring"
|
||||
cveinfo "zotregistry.io/zot/pkg/extensions/search/cve"
|
||||
cvemodel "zotregistry.io/zot/pkg/extensions/search/cve/model"
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
mTypes "zotregistry.io/zot/pkg/meta/types"
|
||||
"zotregistry.io/zot/pkg/storage"
|
||||
"zotregistry.io/zot/pkg/storage/local"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
. "zotregistry.io/zot/pkg/test/image-utils"
|
||||
"zotregistry.io/zot/pkg/test/mocks"
|
||||
ociutils "zotregistry.io/zot/pkg/test/oci-utils"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/cli/client"
|
||||
zcommon "zotregistry.dev/zot/pkg/common"
|
||||
extconf "zotregistry.dev/zot/pkg/extensions/config"
|
||||
"zotregistry.dev/zot/pkg/extensions/monitoring"
|
||||
cveinfo "zotregistry.dev/zot/pkg/extensions/search/cve"
|
||||
cvemodel "zotregistry.dev/zot/pkg/extensions/search/cve/model"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
mTypes "zotregistry.dev/zot/pkg/meta/types"
|
||||
"zotregistry.dev/zot/pkg/storage"
|
||||
"zotregistry.dev/zot/pkg/storage/local"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
. "zotregistry.dev/zot/pkg/test/image-utils"
|
||||
"zotregistry.dev/zot/pkg/test/mocks"
|
||||
ociutils "zotregistry.dev/zot/pkg/test/oci-utils"
|
||||
)
|
||||
|
||||
func TestNegativeServerResponse(t *testing.T) {
|
||||
|
|
|
@ -9,8 +9,8 @@ import (
|
|||
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
zcommon "zotregistry.io/zot/pkg/common"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
zcommon "zotregistry.dev/zot/pkg/common"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -9,9 +9,9 @@ import (
|
|||
|
||||
distext "github.com/opencontainers/distribution-spec/specs-go/v1/extensions"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
zcommon "zotregistry.io/zot/pkg/common"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
zcommon "zotregistry.dev/zot/pkg/common"
|
||||
)
|
||||
|
||||
type field struct {
|
||||
|
|
|
@ -16,11 +16,11 @@ import (
|
|||
. "github.com/smartystreets/goconvey/convey"
|
||||
"gopkg.in/resty.v1"
|
||||
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
"zotregistry.io/zot/pkg/cli/client"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
"zotregistry.dev/zot/pkg/cli/client"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
)
|
||||
|
||||
func TestElevatedPrivilegesTLSNewControllerPrivilegedCert(t *testing.T) {
|
||||
|
|
|
@ -7,8 +7,8 @@ import (
|
|||
"fmt"
|
||||
"strings"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/common"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/common"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -8,8 +8,8 @@ import (
|
|||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
. "zotregistry.io/zot/pkg/cli/client"
|
||||
gql_gen "zotregistry.io/zot/pkg/extensions/search/gql_generated"
|
||||
. "zotregistry.dev/zot/pkg/cli/client"
|
||||
gql_gen "zotregistry.dev/zot/pkg/extensions/search/gql_generated"
|
||||
)
|
||||
|
||||
func TestSortFlagsMapping(t *testing.T) {
|
||||
|
|
|
@ -9,11 +9,11 @@ import (
|
|||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/cli/client"
|
||||
extconf "zotregistry.io/zot/pkg/extensions/config"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/cli/client"
|
||||
extconf "zotregistry.dev/zot/pkg/extensions/config"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
)
|
||||
|
||||
func TestGQLQueries(t *testing.T) {
|
||||
|
|
|
@ -22,14 +22,14 @@ import (
|
|||
ispec "github.com/opencontainers/image-spec/specs-go/v1"
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/common"
|
||||
extconf "zotregistry.io/zot/pkg/extensions/config"
|
||||
stypes "zotregistry.io/zot/pkg/storage/types"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
. "zotregistry.io/zot/pkg/test/image-utils"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/common"
|
||||
extconf "zotregistry.dev/zot/pkg/extensions/config"
|
||||
stypes "zotregistry.dev/zot/pkg/storage/types"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
. "zotregistry.dev/zot/pkg/test/image-utils"
|
||||
)
|
||||
|
||||
func TestSearchImageCmd(t *testing.T) {
|
||||
|
|
|
@ -23,15 +23,15 @@ import (
|
|||
. "github.com/smartystreets/goconvey/convey"
|
||||
"gopkg.in/resty.v1"
|
||||
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/cli/client"
|
||||
extconf "zotregistry.io/zot/pkg/extensions/config"
|
||||
zlog "zotregistry.io/zot/pkg/log"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
. "zotregistry.io/zot/pkg/test/image-utils"
|
||||
ociutils "zotregistry.io/zot/pkg/test/oci-utils"
|
||||
"zotregistry.io/zot/pkg/test/signature"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/cli/client"
|
||||
extconf "zotregistry.dev/zot/pkg/extensions/config"
|
||||
zlog "zotregistry.dev/zot/pkg/log"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
. "zotregistry.dev/zot/pkg/test/image-utils"
|
||||
ociutils "zotregistry.dev/zot/pkg/test/oci-utils"
|
||||
"zotregistry.dev/zot/pkg/test/signature"
|
||||
)
|
||||
|
||||
//nolint:dupl
|
||||
|
|
|
@ -8,8 +8,8 @@ import (
|
|||
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
zcommon "zotregistry.io/zot/pkg/common"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
zcommon "zotregistry.dev/zot/pkg/common"
|
||||
)
|
||||
|
||||
func NewImageListCommand(searchService SearchService) *cobra.Command {
|
||||
|
|
|
@ -13,11 +13,11 @@ import (
|
|||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/cli/client"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
. "zotregistry.io/zot/pkg/test/image-utils"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/cli/client"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
. "zotregistry.dev/zot/pkg/test/image-utils"
|
||||
)
|
||||
|
||||
func TestReposCommand(t *testing.T) {
|
||||
|
|
|
@ -8,7 +8,7 @@ import (
|
|||
"github.com/rs/zerolog/log"
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
)
|
||||
|
||||
// "zli" - client-side cli.
|
||||
|
|
|
@ -9,7 +9,7 @@ import (
|
|||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
"zotregistry.io/zot/pkg/cli/client"
|
||||
"zotregistry.dev/zot/pkg/cli/client"
|
||||
)
|
||||
|
||||
func TestCliUsage(t *testing.T) {
|
||||
|
|
|
@ -13,11 +13,11 @@ import (
|
|||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
extconf "zotregistry.io/zot/pkg/extensions/config"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
. "zotregistry.io/zot/pkg/test/image-utils"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
extconf "zotregistry.dev/zot/pkg/extensions/config"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
. "zotregistry.dev/zot/pkg/test/image-utils"
|
||||
)
|
||||
|
||||
func TestSearchCommandGQL(t *testing.T) {
|
||||
|
|
|
@ -15,13 +15,13 @@ import (
|
|||
ispec "github.com/opencontainers/image-spec/specs-go/v1"
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/cli/client"
|
||||
extconf "zotregistry.io/zot/pkg/extensions/config"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
. "zotregistry.io/zot/pkg/test/image-utils"
|
||||
ociutils "zotregistry.io/zot/pkg/test/oci-utils"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/cli/client"
|
||||
extconf "zotregistry.dev/zot/pkg/extensions/config"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
. "zotregistry.dev/zot/pkg/test/image-utils"
|
||||
ociutils "zotregistry.dev/zot/pkg/test/oci-utils"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -11,8 +11,8 @@ import (
|
|||
"sync"
|
||||
"time"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
zcommon "zotregistry.io/zot/pkg/common"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
zcommon "zotregistry.dev/zot/pkg/common"
|
||||
)
|
||||
|
||||
const CveDBRetryInterval = 3
|
||||
|
|
|
@ -21,8 +21,8 @@ import (
|
|||
. "github.com/smartystreets/goconvey/convey"
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/common"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/common"
|
||||
)
|
||||
|
||||
func TestSearchAllImages(t *testing.T) {
|
||||
|
|
|
@ -8,8 +8,8 @@ import (
|
|||
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
zcommon "zotregistry.io/zot/pkg/common"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
zcommon "zotregistry.dev/zot/pkg/common"
|
||||
)
|
||||
|
||||
func NewSearchSubjectCommand(searchService SearchService) *cobra.Command {
|
||||
|
|
|
@ -13,8 +13,8 @@ import (
|
|||
"github.com/spf13/cobra"
|
||||
"gopkg.in/yaml.v2"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -14,12 +14,12 @@ import (
|
|||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
extconf "zotregistry.io/zot/pkg/extensions/config"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
extconf "zotregistry.dev/zot/pkg/extensions/config"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
)
|
||||
|
||||
func TestServerStatusCommand(t *testing.T) {
|
||||
|
|
|
@ -20,9 +20,9 @@ import (
|
|||
ispec "github.com/opencontainers/image-spec/specs-go/v1"
|
||||
"gopkg.in/yaml.v2"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
"zotregistry.io/zot/pkg/common"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
"zotregistry.dev/zot/pkg/common"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -16,8 +16,8 @@ import (
|
|||
"github.com/briandowns/spinner"
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -17,7 +17,7 @@ import (
|
|||
ispec "github.com/opencontainers/image-spec/specs-go/v1"
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
)
|
||||
|
||||
func getDefaultSearchConf(baseURL string) SearchConfig {
|
||||
|
|
|
@ -9,8 +9,8 @@ import (
|
|||
"github.com/fsnotify/fsnotify"
|
||||
"github.com/rs/zerolog/log"
|
||||
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
)
|
||||
|
||||
type HotReloader struct {
|
||||
|
|
|
@ -12,8 +12,8 @@ import (
|
|||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
cli "zotregistry.io/zot/pkg/cli/server"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
cli "zotregistry.dev/zot/pkg/cli/server"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
)
|
||||
|
||||
func TestConfigReloader(t *testing.T) {
|
||||
|
|
|
@ -13,9 +13,9 @@ import (
|
|||
. "github.com/smartystreets/goconvey/convey"
|
||||
"gopkg.in/resty.v1"
|
||||
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
cli "zotregistry.io/zot/pkg/cli/server"
|
||||
. "zotregistry.io/zot/pkg/test/common"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
cli "zotregistry.dev/zot/pkg/cli/server"
|
||||
. "zotregistry.dev/zot/pkg/test/common"
|
||||
)
|
||||
|
||||
const readLogFileTimeout = 5 * time.Second
|
||||
|
|
|
@ -20,15 +20,15 @@ import (
|
|||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/viper"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
"zotregistry.io/zot/pkg/common"
|
||||
extconf "zotregistry.io/zot/pkg/extensions/config"
|
||||
"zotregistry.io/zot/pkg/extensions/monitoring"
|
||||
zlog "zotregistry.io/zot/pkg/log"
|
||||
storageConstants "zotregistry.io/zot/pkg/storage/constants"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
"zotregistry.dev/zot/pkg/common"
|
||||
extconf "zotregistry.dev/zot/pkg/extensions/config"
|
||||
"zotregistry.dev/zot/pkg/extensions/monitoring"
|
||||
zlog "zotregistry.dev/zot/pkg/log"
|
||||
storageConstants "zotregistry.dev/zot/pkg/storage/constants"
|
||||
)
|
||||
|
||||
// metadataConfig reports metadata after parsing, which we use to track
|
||||
|
|
|
@ -11,11 +11,11 @@ import (
|
|||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
cli "zotregistry.io/zot/pkg/cli/server"
|
||||
storageConstants "zotregistry.io/zot/pkg/storage/constants"
|
||||
. "zotregistry.io/zot/pkg/test/common"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
cli "zotregistry.dev/zot/pkg/cli/server"
|
||||
storageConstants "zotregistry.dev/zot/pkg/storage/constants"
|
||||
. "zotregistry.dev/zot/pkg/test/common"
|
||||
)
|
||||
|
||||
func TestServerUsage(t *testing.T) {
|
||||
|
|
|
@ -14,10 +14,10 @@ import (
|
|||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
cli "zotregistry.io/zot/pkg/cli/server"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
cli "zotregistry.dev/zot/pkg/cli/server"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
package server
|
||||
|
||||
import (
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
syncconf "zotregistry.io/zot/pkg/extensions/config/sync"
|
||||
zlog "zotregistry.io/zot/pkg/log"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
syncconf "zotregistry.dev/zot/pkg/extensions/config/sync"
|
||||
zlog "zotregistry.dev/zot/pkg/log"
|
||||
)
|
||||
|
||||
func validateRetentionSyncOverlaps(config *config.Config, content syncconf.Content, urls []string, log zlog.Logger) {
|
||||
|
|
|
@ -6,10 +6,10 @@ package server
|
|||
import (
|
||||
"path"
|
||||
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
syncconf "zotregistry.io/zot/pkg/extensions/config/sync"
|
||||
"zotregistry.io/zot/pkg/extensions/sync"
|
||||
zlog "zotregistry.io/zot/pkg/log"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
syncconf "zotregistry.dev/zot/pkg/extensions/config/sync"
|
||||
"zotregistry.dev/zot/pkg/extensions/sync"
|
||||
zlog "zotregistry.dev/zot/pkg/log"
|
||||
)
|
||||
|
||||
func validateRetentionSyncOverlaps(config *config.Config, content syncconf.Content, urls []string, log zlog.Logger) {
|
||||
|
|
|
@ -8,8 +8,8 @@ import (
|
|||
notreg "github.com/notaryproject/notation-go/registry"
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/common"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/common"
|
||||
)
|
||||
|
||||
func TestCommon(t *testing.T) {
|
||||
|
|
|
@ -12,7 +12,7 @@ import (
|
|||
"path"
|
||||
"path/filepath"
|
||||
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
)
|
||||
|
||||
func GetTLSConfig(certsPath string, caCertPool *x509.CertPool) (*tls.Config, error) {
|
||||
|
|
|
@ -10,11 +10,11 @@ import (
|
|||
ispec "github.com/opencontainers/image-spec/specs-go/v1"
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/common"
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/common"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
)
|
||||
|
||||
func TestHTTPClient(t *testing.T) {
|
||||
|
|
|
@ -10,10 +10,10 @@ import (
|
|||
"github.com/gorilla/mux"
|
||||
jsoniter "github.com/json-iterator/go"
|
||||
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
apiErr "zotregistry.io/zot/pkg/api/errors"
|
||||
reqCtx "zotregistry.io/zot/pkg/requestcontext"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
apiErr "zotregistry.dev/zot/pkg/api/errors"
|
||||
reqCtx "zotregistry.dev/zot/pkg/requestcontext"
|
||||
)
|
||||
|
||||
func AllowedMethods(methods ...string) []string {
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
"github.com/opencontainers/go-digest"
|
||||
ispec "github.com/opencontainers/image-spec/specs-go/v1"
|
||||
|
||||
zerr "zotregistry.io/zot/errors"
|
||||
zerr "zotregistry.dev/zot/errors"
|
||||
)
|
||||
|
||||
func GetImageDirAndTag(imageName string) (string, string) {
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
"zotregistry.io/zot/pkg/common"
|
||||
"zotregistry.dev/zot/pkg/common"
|
||||
)
|
||||
|
||||
func TestOCI(t *testing.T) {
|
||||
|
|
|
@ -19,11 +19,11 @@ import (
|
|||
"github.com/smartystreets/goconvey/convey/reporting"
|
||||
"gopkg.in/resty.v1"
|
||||
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
"zotregistry.io/zot/pkg/compliance"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
"zotregistry.io/zot/pkg/test/image-utils"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
"zotregistry.dev/zot/pkg/compliance"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
"zotregistry.dev/zot/pkg/test/image-utils"
|
||||
)
|
||||
|
||||
func CheckWorkflows(t *testing.T, config *compliance.Config) {
|
||||
|
|
|
@ -9,11 +9,11 @@ import (
|
|||
|
||||
"gopkg.in/resty.v1"
|
||||
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/compliance"
|
||||
"zotregistry.io/zot/pkg/compliance/v1_0_0"
|
||||
. "zotregistry.io/zot/pkg/test/common"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/compliance"
|
||||
"zotregistry.dev/zot/pkg/compliance/v1_0_0"
|
||||
. "zotregistry.dev/zot/pkg/test/common"
|
||||
)
|
||||
|
||||
//nolint:gochecknoglobals
|
||||
|
|
|
@ -10,10 +10,10 @@ import (
|
|||
|
||||
"github.com/gorilla/mux"
|
||||
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
debugCst "zotregistry.io/zot/pkg/debug/constants"
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
"zotregistry.io/zot/pkg/storage"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
debugCst "zotregistry.dev/zot/pkg/debug/constants"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
"zotregistry.dev/zot/pkg/storage"
|
||||
)
|
||||
|
||||
//go:embed index.html.tmpl
|
||||
|
|
|
@ -6,8 +6,8 @@ package debug
|
|||
import (
|
||||
"github.com/gorilla/mux"
|
||||
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
"zotregistry.io/zot/pkg/storage"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
"zotregistry.dev/zot/pkg/storage"
|
||||
)
|
||||
|
||||
// SetupGQLPlaygroundRoutes ...
|
||||
|
|
|
@ -17,11 +17,11 @@ import (
|
|||
|
||||
"github.com/gorilla/mux"
|
||||
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
registryConst "zotregistry.io/zot/pkg/api/constants"
|
||||
zcommon "zotregistry.io/zot/pkg/common"
|
||||
"zotregistry.io/zot/pkg/debug/constants"
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
registryConst "zotregistry.dev/zot/pkg/api/constants"
|
||||
zcommon "zotregistry.dev/zot/pkg/common"
|
||||
"zotregistry.dev/zot/pkg/debug/constants"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
)
|
||||
|
||||
type profileEntry struct {
|
||||
|
|
|
@ -6,8 +6,8 @@ package pprof
|
|||
import (
|
||||
"github.com/gorilla/mux"
|
||||
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/log" //nolint:goimports
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/log" //nolint:goimports
|
||||
)
|
||||
|
||||
func SetupPprofRoutes(conf *config.Config, router *mux.Router, authFunc mux.MiddlewareFunc,
|
||||
|
|
|
@ -11,11 +11,11 @@ import (
|
|||
. "github.com/smartystreets/goconvey/convey"
|
||||
"gopkg.in/resty.v1"
|
||||
|
||||
"zotregistry.io/zot/pkg/api"
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/api/constants"
|
||||
debugConstants "zotregistry.io/zot/pkg/debug/constants"
|
||||
test "zotregistry.io/zot/pkg/test/common"
|
||||
"zotregistry.dev/zot/pkg/api"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/api/constants"
|
||||
debugConstants "zotregistry.dev/zot/pkg/debug/constants"
|
||||
test "zotregistry.dev/zot/pkg/test/common"
|
||||
)
|
||||
|
||||
func TestProfilingAuthz(t *testing.T) {
|
||||
|
|
|
@ -11,10 +11,10 @@ import (
|
|||
"github.com/gorilla/mux"
|
||||
httpSwagger "github.com/swaggo/http-swagger"
|
||||
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/log" //nolint:goimports
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/log" //nolint:goimports
|
||||
// as required by swaggo.
|
||||
_ "zotregistry.io/zot/swagger"
|
||||
_ "zotregistry.dev/zot/swagger"
|
||||
)
|
||||
|
||||
func SetupSwaggerRoutes(conf *config.Config, router *mux.Router, authFunc mux.MiddlewareFunc,
|
||||
|
|
|
@ -10,8 +10,8 @@ package debug
|
|||
import (
|
||||
"github.com/gorilla/mux"
|
||||
|
||||
"zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
"zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
)
|
||||
|
||||
func SetupSwaggerRoutes(conf *config.Config, router *mux.Router, authFunc mux.MiddlewareFunc,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
package api
|
||||
|
||||
import (
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
)
|
||||
|
||||
type Controller struct {
|
||||
|
|
|
@ -22,12 +22,12 @@ import (
|
|||
. "github.com/smartystreets/goconvey/convey"
|
||||
"gopkg.in/resty.v1"
|
||||
|
||||
zotapi "zotregistry.io/zot/pkg/api"
|
||||
zotcfg "zotregistry.io/zot/pkg/api/config"
|
||||
"zotregistry.io/zot/pkg/exporter/api"
|
||||
"zotregistry.io/zot/pkg/extensions/monitoring"
|
||||
"zotregistry.io/zot/pkg/scheduler"
|
||||
. "zotregistry.io/zot/pkg/test/common"
|
||||
zotapi "zotregistry.dev/zot/pkg/api"
|
||||
zotcfg "zotregistry.dev/zot/pkg/api/config"
|
||||
"zotregistry.dev/zot/pkg/exporter/api"
|
||||
"zotregistry.dev/zot/pkg/extensions/monitoring"
|
||||
"zotregistry.dev/zot/pkg/scheduler"
|
||||
. "zotregistry.dev/zot/pkg/test/common"
|
||||
)
|
||||
|
||||
func getRandomLatencyN(max int64) time.Duration {
|
||||
|
|
|
@ -15,8 +15,8 @@ import (
|
|||
"github.com/prometheus/client_golang/prometheus"
|
||||
"github.com/prometheus/client_golang/prometheus/promhttp"
|
||||
|
||||
"zotregistry.io/zot/pkg/extensions/monitoring"
|
||||
"zotregistry.io/zot/pkg/log"
|
||||
"zotregistry.dev/zot/pkg/extensions/monitoring"
|
||||
"zotregistry.dev/zot/pkg/log"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|