containerd/vendor/github.com/containerd/continuity
Akihiro Suda d3724a6c17
go.mod: update github.com/containerd/{continuity,go-cni,imgcrypt}
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
2022-01-07 18:54:15 +09:00
..
devices go.mod: update github.com/containerd/{continuity,go-cni,imgcrypt} 2022-01-07 18:54:15 +09:00
driver go.mod: update github.com/containerd/{continuity,go-cni,imgcrypt} 2022-01-07 18:54:15 +09:00
fs go.mod: update github.com/containerd/{continuity,go-cni,imgcrypt} 2022-01-07 18:54:15 +09:00
pathdriver Update continuity 2018-09-21 09:14:51 -07:00
proto Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
sysx go.mod: update github.com/containerd/{continuity,go-cni,imgcrypt} 2022-01-07 18:54:15 +09:00
testutil bump continuity and console version that remove pkg/errors 2021-09-21 21:56:18 +08:00
.gitignore Go mod vendor 2020-12-01 01:41:25 +08:00
.golangci.yml Go mod vendor 2020-12-01 01:41:25 +08:00
.mailmap Go mod vendor 2020-12-01 01:41:25 +08:00
AUTHORS vendor: update continuity for darwin support 2021-09-11 08:32:37 +09:00
context.go go.mod: update github.com/containerd/{continuity,go-cni,imgcrypt} 2022-01-07 18:54:15 +09:00
digests.go vendor: update containerd/continuity efbc4488d8fe1bdc16bde3b2d2990d9b3a899165 2020-07-28 16:39:35 +02:00
go.mod Update continuity dependency 2021-12-03 00:26:45 +02:00
go.sum Update continuity dependency 2021-12-03 00:26:45 +02:00
groups_unix.go vendor: update containerd/continuity efbc4488d8fe1bdc16bde3b2d2990d9b3a899165 2020-07-28 16:39:35 +02:00
hardlinks_unix.go go.mod: update github.com/containerd/{continuity,go-cni,imgcrypt} 2022-01-07 18:54:15 +09:00
hardlinks_windows.go Update continuity 2018-09-21 09:14:51 -07:00
hardlinks.go vendor: update containerd/continuity efbc4488d8fe1bdc16bde3b2d2990d9b3a899165 2020-07-28 16:39:35 +02:00
ioutils.go Update continuity 2018-09-21 09:14:51 -07:00
LICENSE Update continuity vendor 2019-08-16 15:49:47 -07:00
Makefile Go mod vendor 2020-12-01 01:41:25 +08:00
manifest.go go.mod: update github.com/containerd/{continuity,go-cni,imgcrypt} 2022-01-07 18:54:15 +09:00
README.md vendor: update continuity for darwin support 2021-09-11 08:32:37 +09:00
resource_unix.go go.mod: update github.com/containerd/{continuity,go-cni,imgcrypt} 2022-01-07 18:54:15 +09:00
resource_windows.go Update continuity 2018-09-21 09:14:51 -07:00
resource.go Update continuity 2018-09-21 09:14:51 -07:00

continuity

GoDoc Build Status

A transport-agnostic, filesystem metadata manifest system

This project is a staging area for experiments in providing transport agnostic metadata storage.

Please see https://github.com/opencontainers/specs/issues/11 for more details.

Manifest Format

A continuity manifest encodes filesystem metadata in Protocol Buffers. Please refer to proto/manifest.proto.

Usage

Build:

$ make

Create a manifest (of this repo itself):

$ ./bin/continuity build . > /tmp/a.pb

Dump a manifest:

$ ./bin/continuity ls /tmp/a.pb
...
-rw-rw-r--      270 B   /.gitignore
-rw-rw-r--      88 B    /.mailmap
-rw-rw-r--      187 B   /.travis.yml
-rw-rw-r--      359 B   /AUTHORS
-rw-rw-r--      11 kB   /LICENSE
-rw-rw-r--      1.5 kB  /Makefile
...
-rw-rw-r--      986 B   /testutil_test.go
drwxrwxr-x      0 B     /version
-rw-rw-r--      478 B   /version/version.go

Verify a manifest:

$ ./bin/continuity verify . /tmp/a.pb

Break the directory and restore using the manifest:

$ chmod 777 Makefile
$ ./bin/continuity verify . /tmp/a.pb
2017/06/23 08:00:34 error verifying manifest: resource "/Makefile" has incorrect mode: -rwxrwxrwx != -rw-rw-r--
$ ./bin/continuity apply . /tmp/a.pb
$ stat -c %a Makefile
664
$ ./bin/continuity verify . /tmp/a.pb

Platforms

continuity primarily targets Linux. continuity may compile for and work on other operating systems, but those platforms are not tested.

Contribution Guide

Building Proto Package

If you change the proto file you will need to rebuild the generated Go with go generate.

$ go generate ./proto

Project details

continuity is a containerd sub-project, licensed under the Apache 2.0 license. As a containerd sub-project, you will find the:

information in our containerd/project repository.