├── .github └── PULL_REQUEST_TEMPLATE.md ├── CONTRIBUTING.md ├── LICENSE ├── OWNERS ├── README.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── doc.go ├── go.mod ├── go.sum └── pkg ├── apis ├── runtime │ └── v1 │ │ ├── api.pb.go │ │ ├── api.proto │ │ ├── api_grpc.pb.go │ │ └── constants.go ├── services.go └── testing │ ├── fake_image_service.go │ ├── fake_runtime_service.go │ └── utils.go └── errors ├── doc.go ├── errors.go └── errors_test.go /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/SECURITY_CONTACTS -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/doc.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/go.sum -------------------------------------------------------------------------------- /pkg/apis/runtime/v1/api.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/pkg/apis/runtime/v1/api.pb.go -------------------------------------------------------------------------------- /pkg/apis/runtime/v1/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/pkg/apis/runtime/v1/api.proto -------------------------------------------------------------------------------- /pkg/apis/runtime/v1/api_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/pkg/apis/runtime/v1/api_grpc.pb.go -------------------------------------------------------------------------------- /pkg/apis/runtime/v1/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/pkg/apis/runtime/v1/constants.go -------------------------------------------------------------------------------- /pkg/apis/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/pkg/apis/services.go -------------------------------------------------------------------------------- /pkg/apis/testing/fake_image_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/pkg/apis/testing/fake_image_service.go -------------------------------------------------------------------------------- /pkg/apis/testing/fake_runtime_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/pkg/apis/testing/fake_runtime_service.go -------------------------------------------------------------------------------- /pkg/apis/testing/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/pkg/apis/testing/utils.go -------------------------------------------------------------------------------- /pkg/errors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/pkg/errors/doc.go -------------------------------------------------------------------------------- /pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/pkg/errors/errors.go -------------------------------------------------------------------------------- /pkg/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes/cri-api/HEAD/pkg/errors/errors_test.go --------------------------------------------------------------------------------