Skip to content

Commit a5f3ef3

Browse files
committedApr 2, 2020
refactor(image): add image reference interface
- Add image.Reference interface and SimpleReference implementation as parameters of image.Registry methods (in place of strings) - Refactor image.Registry tests into suite - Add registry implementation notes - Remove buildah from builds (Note: should be re-added once it's complete)
1 parent f666f9d commit a5f3ef3

File tree

45 files changed

+392
-1150
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+392
-1150
lines changed
 

‎.gitignore

+6-1
Original file line numberDiff line numberDiff line change
@@ -454,5 +454,10 @@ bin
454454
# Ignore vscode
455455
.vscode
456456

457-
# Igore apprclient meta
457+
# Ignore apprclient meta
458458
pkg/apprclient/openapi/git_push.sh
459+
460+
# Never ignore testdata
461+
!pkg/**/testdata/**
462+
!test/**testdata/**
463+

‎go.mod

+12-2
Original file line numberDiff line numberDiff line change
@@ -3,40 +3,50 @@ module github.com/operator-framework/operator-registry
33
go 1.13
44

55
require (
6+
github.com/Microsoft/hcsshim v0.8.7 // indirect
67
github.com/antihax/optional v0.0.0-20180407024304-ca021399b1a6
78
github.com/blang/semver v3.5.0+incompatible
89
github.com/containerd/containerd v1.3.2
910
github.com/containerd/continuity v0.0.0-20200228182428-0f16d7a0959c // indirect
10-
github.com/containers/buildah v1.14.3
1111
github.com/docker/cli v0.0.0-20200130152716-5d0cf8839492
1212
github.com/docker/distribution v2.7.1+incompatible
1313
github.com/docker/docker v1.4.2-0.20200203170920-46ec8731fbce
14+
github.com/docker/docker-credential-helpers v0.6.3 // indirect
1415
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // indirect
16+
github.com/docker/go-metrics v0.0.1 // indirect
17+
github.com/docker/libtrust v0.0.0-20160708172513-aabc10ec26b7 // indirect
1518
github.com/ghodss/yaml v1.0.0
1619
github.com/gogo/protobuf v1.3.1 // indirect
1720
github.com/golang-migrate/migrate/v4 v4.6.2
1821
github.com/golang/mock v1.3.1
1922
github.com/golang/protobuf v1.3.2
23+
github.com/google/go-cmp v0.4.0 // indirect
24+
github.com/gorilla/mux v1.7.4 // indirect
2025
github.com/grpc-ecosystem/grpc-health-probe v0.2.1-0.20181220223928-2bf0a5b182db
26+
github.com/imdario/mergo v0.3.8 // indirect
2127
github.com/mattn/go-sqlite3 v1.10.0
2228
github.com/maxbrunsfeld/counterfeiter/v6 v6.2.2
2329
github.com/morikuni/aec v1.0.0 // indirect
2430
github.com/onsi/ginkgo v1.12.0
2531
github.com/onsi/gomega v1.9.0
2632
github.com/opencontainers/image-spec v1.0.2-0.20190823105129-775207bd45b6
33+
github.com/opencontainers/runc v1.0.0-rc9 // indirect
34+
github.com/opencontainers/runtime-spec v0.1.2-0.20190618234442-a950415649c7 // indirect
2735
github.com/operator-framework/api v0.1.1
2836
github.com/otiai10/copy v1.0.2
2937
github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
3038
github.com/pkg/errors v0.9.1
3139
github.com/sirupsen/logrus v1.4.2
3240
github.com/spf13/cobra v0.0.6
3341
github.com/stretchr/testify v1.5.1
34-
go.etcd.io/bbolt v1.3.3
42+
go.etcd.io/bbolt v1.3.4
43+
golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975 // indirect
3544
golang.org/x/mod v0.2.0
3645
golang.org/x/net v0.0.0-20191028085509-fe3aa8a45271
3746
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
3847
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect
3948
google.golang.org/grpc v1.24.0
49+
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
4050
gopkg.in/yaml.v2 v2.2.8
4151
k8s.io/api v0.17.3
4252
k8s.io/apiextensions-apiserver v0.17.3

0 commit comments

Comments
 (0)
Please sign in to comment.