diff options
author | Paul Holzinger <pholzing@redhat.com> | 2022-03-11 16:10:32 +0100 |
---|---|---|
committer | Paul Holzinger <pholzing@redhat.com> | 2022-03-15 14:48:08 +0100 |
commit | a0ad1f2ad46507f13a16d342b9ccf35a38bae3d5 (patch) | |
tree | 2b2d70b7961c6373a3ff3674cd909501739b80f9 /go.mod | |
parent | 918fc88a983ea1c1ee7e0abb0fc1dce3c0a35be3 (diff) | |
download | podman-a0ad1f2ad46507f13a16d342b9ccf35a38bae3d5.tar.gz podman-a0ad1f2ad46507f13a16d342b9ccf35a38bae3d5.tar.bz2 podman-a0ad1f2ad46507f13a16d342b9ccf35a38bae3d5.zip |
remove unneeded k8s code
There is a lot of unneeded code, k8s is the by far the biggest
dependency in podman. We should remove as much as possible so that we
only have the stuff left that we use.
This is just a quick skim over the code which removes a lot of the
generated code and many packages that are now unused.
I know that this will be impossible to properly review. I will try to
make smaller changes in follow up work.
Right now this reduces about 8 MB in binary size!!!
[NO NEW TESTS NEEDED] Hopefully existing tests will catch any problems.
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -31,10 +31,7 @@ require ( github.com/dtylman/scp v0.0.0-20181017070807-f3000a34aef4 github.com/fsnotify/fsnotify v1.5.1 github.com/ghodss/yaml v1.0.0 - github.com/go-logr/logr v1.2.2 github.com/godbus/dbus/v5 v5.1.0 - github.com/gogo/protobuf v1.3.2 - github.com/google/go-cmp v0.5.7 github.com/google/gofuzz v1.2.0 github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 github.com/google/uuid v1.3.0 @@ -69,14 +66,12 @@ require ( github.com/vishvananda/netlink v1.1.1-0.20220115184804-dd687eb2f2d4 go.etcd.io/bbolt v1.3.6 golang.org/x/crypto v0.0.0-20220112180741-5e0467b6c7ce - golang.org/x/net v0.0.0-20220225172249-27dd8689420f golang.org/x/sync v0.0.0-20210220032951-036812b2e83c golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9 golang.org/x/text v0.3.7 google.golang.org/protobuf v1.27.1 gopkg.in/inf.v0 v0.9.1 gopkg.in/yaml.v2 v2.4.0 - sigs.k8s.io/structured-merge-diff/v4 v4.1.2 ) replace github.com/onsi/gomega => github.com/onsi/gomega v1.16.0 |