WORKSPACE: bump rules_go go 0.29 and Go to 1.17.1

The changes to nogo are from rules_go being able to use go_library
targets as part toolchain definitions. gVisor needed to be bumped
to be compatible with Go 1.17. It also needs a fix for us not having
the systemd cgroup controller.

Change-Id: I058b5c68d97809a286fbe36df00e49e55874dfd5
Reviewed-on: https://review.monogon.dev/c/monogon/+/438
Reviewed-by: Sergiusz Bazanski <serge@monogon.tech>
diff --git a/third_party/go/patches/commentwrap-tool-library.patch b/third_party/go/patches/commentwrap-tool-library.patch
deleted file mode 100644
index a5bf2cb..0000000
--- a/third_party/go/patches/commentwrap-tool-library.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-Copyright 2021 The Monogon Project Authors.
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-
-This adds a go_tool_library target to github.com/corverroos/commentwrap. This can
-be removed when go_tool_library gets replaced with transitions:
-https://github.com/bazelbuild/rules_go/issues/2374
-
-diff -ur a/BUILD.bazel b/BUILD.bazel
---- a/BUILD.bazel	2021-05-20 13:21:49.582041541 +0200
-+++ b/BUILD.bazel	2021-05-21 14:25:51.550052340 +0200
-@@ -1,4 +1,15 @@
--load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
-+load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test", "go_tool_library")
-+
-+go_tool_library(
-+    name = "go_tool_library",
-+    srcs = ["commentwrap.go"],
-+    importpath = "github.com/corverroos/commentwrap",
-+    visibility = ["//visibility:public"],
-+    deps = [
-+        "@com_github_muesli_reflow//:go_tool_library",
-+        "@org_golang_x_tools//go/analysis:go_tool_library",
-+    ],
-+)
- 
- go_library(
-     name = "go_default_library",
diff --git a/third_party/go/patches/gvisor-cgroup-fix.patch b/third_party/go/patches/gvisor-cgroup-fix.patch
new file mode 100644
index 0000000..aba0b4a
--- /dev/null
+++ b/third_party/go/patches/gvisor-cgroup-fix.patch
@@ -0,0 +1,27 @@
+From fcd48e672489f41c9977e092937ff806a7e772bd Mon Sep 17 00:00:00 2001
+From: Lorenz Brun <lorenz@monogon.tech>
+Date: Thu, 11 Nov 2021 13:58:50 +0100
+Subject: [PATCH] Make systemd cgroup optional
+
+This breaks gVisor on systems that use custom inits/cgroup setups which
+don't have this cgroup and don't need it.
+---
+ runsc/cgroup/cgroup.go | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/runsc/cgroup/cgroup.go b/runsc/cgroup/cgroup.go
+index 0eb5821a9..2116bddca 100644
+--- a/runsc/cgroup/cgroup.go
++++ b/runsc/cgroup/cgroup.go
+@@ -58,7 +58,7 @@ var controllers = map[string]controller{
+ 	"freezer":    &noop{},
+ 	"perf_event": &noop{},
+ 	"rdma":       &noop{isOptional: true},
+-	"systemd":    &noop{},
++	"systemd":    &noop{isOptional: true},
+ }
+ 
+ // IsOnlyV2 checks whether cgroups V2 is enabled and V1 is not.
+-- 
+2.25.1
+
diff --git a/third_party/go/patches/k8s-infra-fix-go116.patch b/third_party/go/patches/k8s-infra-fix-go116.patch
new file mode 100644
index 0000000..bf35938
--- /dev/null
+++ b/third_party/go/patches/k8s-infra-fix-go116.patch
@@ -0,0 +1,23 @@
+From 5cf776eb8f872f78cf7325c39fbfe1777f702407 Mon Sep 17 00:00:00 2001
+From: Mike Danese <mikedanese@google.com>
+Date: Fri, 26 Feb 2021 13:39:16 -0800
+Subject: [PATCH] fix go_genrule for 1.16
+
+---
+ defs/go.bzl | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/defs/go.bzl b/defs/go.bzl
+index f4617e1..8873253 100644
+--- a/defs/go.bzl
++++ b/defs/go.bzl
+@@ -90,6 +90,9 @@ def _go_genrule_impl(ctx):
+         "PATH": ctx.configuration.host_path_separator.join(["/usr/local/bin", "/bin", "/usr/bin"]),
+         "GOPATH": paths.dirname(gopath_placeholder.path),
+         "GOROOT": paths.dirname(go.sdk.root_file.path),
++        # hack to tie us over until we fix this to use modules or stop using
++        # it.
++        "GO111MODULE": "off",
+     })
+ 
+     ctx.actions.run(
diff --git a/third_party/go/patches/reflow-tool-library.patch b/third_party/go/patches/reflow-tool-library.patch
deleted file mode 100644
index dcee286..0000000
--- a/third_party/go/patches/reflow-tool-library.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-Copyright 2021 The Monogon Project Authors.
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-
-This adds a go_tool_library target to github.com/muesli/reflow. This can
-be removed when go_tool_library gets replaced with transition:
-https://github.com/bazelbuild/rules_go/issues/2374
-
-diff -ur a/BUILD.bazel b/BUILD.bazel
---- a/BUILD.bazel	2021-05-21 14:36:39.411306726 +0200
-+++ b/BUILD.bazel	2021-05-21 14:37:02.602460127 +0200
-@@ -1,4 +1,14 @@
--load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
-+load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test", "go_tool_library")
-+
-+go_tool_library(
-+    name = "go_tool_library",
-+    srcs = [
-+        "ansibuffer.go",
-+        "reflow.go",
-+    ],
-+    importpath = "github.com/muesli/reflow",
-+    visibility = ["//visibility:public"],
-+)
- 
- go_library(
-     name = "go_default_library",
diff --git a/third_party/go/repositories.bzl b/third_party/go/repositories.bzl
index 9e7f712..2bee624 100644
--- a/third_party/go/repositories.bzl
+++ b/third_party/go/repositories.bzl
@@ -479,10 +479,6 @@
         importpath = "github.com/corverroos/commentwrap",
         version = "v0.0.0-20191204065359-2926638be44c",
         sum = "h1:toeMwwechJKH0iwOoGJLZK6x42Ba9si+816KxqmgFc8=",
-        patches = [
-            "//third_party/go/patches:commentwrap-tool-library.patch",
-        ],
-        patch_args = ["-p1"],
         build_extra_args = [
             "-go_naming_convention=go_default_library",
             "-go_naming_convention_external=go_default_library",
@@ -901,8 +897,8 @@
     go_repository(
         name = "com_github_gofrs_flock",
         importpath = "github.com/gofrs/flock",
-        version = "v0.6.1-0.20180915234121-886344bea079",
-        sum = "h1:JFTFz3HZTGmgMz4E1TabNBNJljROSYgja1b4l50FNVs=",
+        version = "v0.8.0",
+        sum = "h1:MSdYClljsF3PbENUUEx85nkWfJSGfzYI9yEBZOJz6CY=",
         build_extra_args = [
             "-go_naming_convention=go_default_library",
             "-go_naming_convention_external=go_default_library",
@@ -1032,11 +1028,12 @@
     go_repository(
         name = "com_github_google_gvisor",
         importpath = "github.com/google/gvisor",
-        version = "v0.0.0-20201216082428-b645fcd241a8",
-        sum = "h1:gNssWp0Zg2Ij2OMz4Gi5ciVLnMVGzqfvPOADTN1ou+E=",
+        version = "v0.0.0-20211029210316-b822923b706d",
+        sum = "h1:DLypxrLRMq0P4f96vlutTfJpM5/Y8q6rDafgBU1pxAs=",
         patches = [
             "//third_party/go/patches:gvisor.patch",
             "//third_party/go/patches:gvisor-build-against-newer-runtime-specs.patch",
+            "//third_party/go/patches:gvisor-cgroup-fix.patch",
         ],
         patch_args = ["-p1"],
         build_extra_args = [
@@ -1079,6 +1076,7 @@
         importpath = "github.com/googleapis/gnostic",
         version = "v0.4.1",
         sum = "h1:DLJCy1n/vrD4HPjOvYcT8aYQXpPIzoRZONaYwyycI+I=",
+        build_file_proto_mode = "disable",
         build_extra_args = [
             "-go_naming_convention=go_default_library",
             "-go_naming_convention_external=go_default_library",
@@ -1599,10 +1597,6 @@
         importpath = "github.com/muesli/reflow",
         version = "v0.0.0-20191128061954-86f094cbed14",
         sum = "h1:99aDTygRy9yEwggATz+ZLrDFRsjRog5BqbAfsr47Ztw=",
-        patches = [
-            "//third_party/go/patches:reflow-tool-library.patch",
-        ],
-        patch_args = ["-p1"],
         build_extra_args = [
             "-go_naming_convention=go_default_library",
             "-go_naming_convention_external=go_default_library",
@@ -2225,8 +2219,8 @@
         version = "v0.3.0",
         sum = "h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4=",
         build_extra_args = [
-            "-go_naming_convention=go_default_library",
-            "-go_naming_convention_external=go_default_library",
+            "-go_naming_convention=import_alias",
+            "-go_naming_convention_external=import_alias",
         ],
     )
     go_repository(
@@ -2255,8 +2249,8 @@
         version = "v0.0.0-20181108010431-42b317875d0f",
         sum = "h1:Bl/8QSvNqXvPGPGXa2z5xUTmV7VDcZyvRZ+QQXkXTZQ=",
         build_extra_args = [
-            "-go_naming_convention=go_default_library",
-            "-go_naming_convention_external=go_default_library",
+            "-go_naming_convention=import_alias",
+            "-go_naming_convention_external=import_alias",
         ],
     )
     go_repository(
@@ -2707,6 +2701,7 @@
         sum = "h1:0GPavEcPKBA0rYl7f6dO0mXYmx7t9RaXD3be2g23Ps4=",
         pre_patches = [
             "//third_party/go/patches:k8s-infra-bzl4-compat.patch",
+            "//third_party/go/patches:k8s-infra-fix-go116.patch",
         ],
         patch_args = ["-p1"],
         build_extra_args = [
diff --git a/third_party/go/shelf.pb.text b/third_party/go/shelf.pb.text
index f4a2ed1..de2f33e 100644
--- a/third_party/go/shelf.pb.text
+++ b/third_party/go/shelf.pb.text
@@ -55,6 +55,13 @@
   semver: "v0.4.14"
 >
 entry: <
+  import_path: "github.com/Microsoft/go-winio"
+  version: "v0.4.17"
+  bazel_name: "com_github_microsoft_go_winio"
+  sum: "h1:iT12IBVClFevaf8PuVyi3UmZOVh4OqnaLxDTW2O6j3w="
+  semver: "v0.4.17"
+>
+entry: <
   import_path: "github.com/Microsoft/hcsshim"
   version: "0b571ac85d7c5842b26d2571de4868634a4c39d7"
   bazel_name: "com_github_microsoft_hcsshim"
@@ -70,6 +77,13 @@
 >
 entry: <
   import_path: "github.com/Microsoft/hcsshim"
+  version: "v0.8.21"
+  bazel_name: "com_github_microsoft_hcsshim"
+  sum: "h1:btRfUDThBE5IKcvI8O8jOiIkujUsAMBSRsYDYmEi6oM="
+  semver: "v0.8.21"
+>
+entry: <
+  import_path: "github.com/Microsoft/hcsshim"
   version: "v0.8.9"
   bazel_name: "com_github_microsoft_hcsshim"
   sum: "h1:VrfodqvztU8YSOvygU+DN1BGaSGxmrNfqOv5oOuX2Bk="
@@ -140,6 +154,13 @@
 >
 entry: <
   import_path: "github.com/beorn7/perks"
+  version: "v0.0.0-20180321164747-3a771d992973"
+  bazel_name: "com_github_beorn7_perks"
+  sum: "h1:xJ4a3vCFaGF/jqvzLMYoU8P317H5OQ+Via4RmuPwCS0="
+  semver: "v0.0.0-20180321164747-3a771d992973"
+>
+entry: <
+  import_path: "github.com/beorn7/perks"
   version: "v1.0.1"
   bazel_name: "com_github_beorn7_perks"
   sum: "h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM="
@@ -153,6 +174,13 @@
   semver: "v0.1.0"
 >
 entry: <
+  import_path: "github.com/bits-and-blooms/bitset"
+  version: "v1.2.0"
+  bazel_name: "com_github_bits_and_blooms_bitset"
+  sum: "h1:Kn4yilvwNtMACtf1eYDlG8H77R07mZSPbMjLyS07ChA="
+  semver: "v1.2.0"
+>
+entry: <
   import_path: "github.com/blang/semver"
   version: "v3.5.0+incompatible"
   bazel_name: "com_github_blang_semver"
@@ -244,6 +272,13 @@
   semver: "v4.1.0"
 >
 entry: <
+  import_path: "github.com/checkpoint-restore/go-criu/v5"
+  version: "v5.0.0"
+  bazel_name: "com_github_checkpoint_restore_go_criu_v5"
+  sum: "h1:TW8f/UvntYoVDMN1K2HlT82qH1rb0sOjpGw3m6Ym+i4="
+  semver: "v5.0.0"
+>
+entry: <
   import_path: "github.com/cilium/arping"
   version: "v1.0.1-0.20190728065459-c5eaf8d7a710"
   bazel_name: "com_github_cilium_arping"
@@ -286,6 +321,20 @@
   semver: "v0.0.0-20191203103619-60c3aa43f488"
 >
 entry: <
+  import_path: "github.com/cilium/ebpf"
+  version: "v0.2.0"
+  bazel_name: "com_github_cilium_ebpf"
+  sum: "h1:Fv93L3KKckEcEHR3oApXVzyBTDA8WAm6VXhPE00N3f8="
+  semver: "v0.2.0"
+>
+entry: <
+  import_path: "github.com/cilium/ebpf"
+  version: "v0.6.2"
+  bazel_name: "com_github_cilium_ebpf"
+  sum: "h1:iHsfF/t4aW4heW2YKfeHrVPGdtYTL4C4KocpM8KTSnI="
+  semver: "v0.6.2"
+>
+entry: <
   import_path: "github.com/cilium/ipam"
   version: "v0.0.0-20200420133938-2f672ef3ad54"
   bazel_name: "com_github_cilium_ipam"
@@ -349,6 +398,13 @@
   semver: "v0.0.0-20201111183144-404b9149801e"
 >
 entry: <
+  import_path: "github.com/containerd/btrfs"
+  version: "v1.0.0"
+  bazel_name: "com_github_containerd_btrfs"
+  sum: "h1:osn1exbzdub9L5SouXO5swW4ea/xVdJZ3wokxN5GrnA="
+  semver: "v1.0.0"
+>
+entry: <
   import_path: "github.com/containerd/cgroups"
   version: "318312a373405e5e91134d8063d04d59768a1bff"
   bazel_name: "com_github_containerd_cgroups"
@@ -363,6 +419,13 @@
   semver: "v0.0.0-20200113070643-7347743e5d1e"
 >
 entry: <
+  import_path: "github.com/containerd/cgroups"
+  version: "v1.0.1"
+  bazel_name: "com_github_containerd_cgroups"
+  sum: "h1:iJnMvco9XGvKUvNQkv88bE4uJXxRQH18efbKo9w5vHQ="
+  semver: "v1.0.1"
+>
+entry: <
   import_path: "github.com/containerd/console"
   version: "8375c3424e4d7b114e8a90a4a40c8e1b40d1d4e6"
   bazel_name: "com_github_containerd_console"
@@ -377,6 +440,13 @@
   semver: "v1.0.0"
 >
 entry: <
+  import_path: "github.com/containerd/console"
+  version: "v1.0.2"
+  bazel_name: "com_github_containerd_console"
+  sum: "h1:Pi6D+aZXM+oUw1czuKgH5IJ+y0jhYcwBJfx5/Ghn9dE="
+  semver: "v1.0.2"
+>
+entry: <
   import_path: "github.com/containerd/containerd"
   version: "8e685f78cf66e2901b2fbed2fdddd64449a74ab9"
   bazel_name: "com_github_containerd_containerd"
@@ -398,6 +468,13 @@
   semver: "v1.4.3"
 >
 entry: <
+  import_path: "github.com/containerd/containerd"
+  version: "v1.5.7"
+  bazel_name: "com_github_containerd_containerd"
+  sum: "h1:rQyoYtj4KddB3bxG6SAqd4+08gePNyJjRqvOIfV3rkM="
+  semver: "v1.5.7"
+>
+entry: <
   import_path: "github.com/containerd/continuity"
   version: "0ec596719c75bfd42908850990acea594b7593ac"
   bazel_name: "com_github_containerd_continuity"
@@ -419,6 +496,13 @@
   semver: "v0.0.0-20200710164510-efbc4488d8fe"
 >
 entry: <
+  import_path: "github.com/containerd/continuity"
+  version: "v0.1.0"
+  bazel_name: "com_github_containerd_continuity"
+  sum: "h1:UFRRY5JemiAhPZrr/uE0n8fMTLcZsUvySPr1+D7pgr8="
+  semver: "v0.1.0"
+>
+entry: <
   import_path: "github.com/containerd/cri"
   version: "8fb244a65baad2457e6c8658db18ed28b1f77cfe"
   bazel_name: "com_github_containerd_cri"
@@ -454,6 +538,13 @@
   semver: "v0.0.0-20200410184934-f15a3290365b"
 >
 entry: <
+  import_path: "github.com/containerd/fifo"
+  version: "v1.0.0"
+  bazel_name: "com_github_containerd_fifo"
+  sum: "h1:6PirWBr9/L7GDamKr+XM0IeUFXu5mf3M/BPpH9gaLBU="
+  semver: "v1.0.0"
+>
+entry: <
   import_path: "github.com/containerd/go-cni"
   version: "0d360c50b10b350b6bb23863fd4dfb1c232b01c9"
   bazel_name: "com_github_containerd_go_cni"
@@ -475,6 +566,13 @@
   semver: "v1.0.1"
 >
 entry: <
+  import_path: "github.com/containerd/go-cni"
+  version: "v1.0.2"
+  bazel_name: "com_github_containerd_go_cni"
+  sum: "h1:YbJAhpTevL2v6u8JC1NhCYRwf+3Vzxcc5vGnYoJ7VeE="
+  semver: "v1.0.2"
+>
+entry: <
   import_path: "github.com/containerd/go-runc"
   version: "7016d3ce2328dd2cb1192b2076ebd565c4e8df0c"
   bazel_name: "com_github_containerd_go_runc"
@@ -489,6 +587,13 @@
   semver: "v0.0.0-20191206163734-a5c2862aed5e"
 >
 entry: <
+  import_path: "github.com/containerd/go-runc"
+  version: "v1.0.0"
+  bazel_name: "com_github_containerd_go_runc"
+  sum: "h1:oU+lLv1ULm5taqgV/CJivypVODI4SUz1znWjv3nNYS0="
+  semver: "v1.0.0"
+>
+entry: <
   import_path: "github.com/containerd/imgcrypt"
   version: "v1.0.1"
   bazel_name: "com_github_containerd_imgcrypt"
@@ -496,6 +601,20 @@
   semver: "v1.0.1"
 >
 entry: <
+  import_path: "github.com/containerd/imgcrypt"
+  version: "v1.1.1"
+  bazel_name: "com_github_containerd_imgcrypt"
+  sum: "h1:LBwiTfoUsdiEGAR1TpvxE+Gzt7469oVu87iR3mv3Byc="
+  semver: "v1.1.1"
+>
+entry: <
+  import_path: "github.com/containerd/nri"
+  version: "v0.1.0"
+  bazel_name: "com_github_containerd_nri"
+  sum: "h1:6QioHRlThlKh2RkRTR4kIT3PKAcrLo3gIWnjkM4dQmQ="
+  semver: "v0.1.0"
+>
+entry: <
   import_path: "github.com/containerd/ttrpc"
   version: "92c8520ef9f86600c650dd540266a007bf03670f"
   bazel_name: "com_github_containerd_ttrpc"
@@ -524,6 +643,13 @@
   semver: "v1.0.1"
 >
 entry: <
+  import_path: "github.com/containerd/typeurl"
+  version: "v1.0.2"
+  bazel_name: "com_github_containerd_typeurl"
+  sum: "h1:Chlt8zIieDbzQFzXzAeBEF92KhExuE4p9p92/QmY7aY="
+  semver: "v1.0.2"
+>
+entry: <
   import_path: "github.com/containernetworking/cni"
   version: "4cfb7b568922a3c79a23e438dc52fe537fc9687e"
   bazel_name: "com_github_containernetworking_cni"
@@ -545,6 +671,13 @@
   semver: "v0.8.0"
 >
 entry: <
+  import_path: "github.com/containernetworking/cni"
+  version: "v0.8.1"
+  bazel_name: "com_github_containernetworking_cni"
+  sum: "h1:7zpDnQ3T3s4ucOuJ/ZCLrYBxzkg0AELFfII3Epo9TmI="
+  semver: "v0.8.1"
+>
+entry: <
   import_path: "github.com/containernetworking/plugins"
   version: "v0.8.2"
   bazel_name: "com_github_containernetworking_plugins"
@@ -559,6 +692,13 @@
   semver: "v1.0.1"
 >
 entry: <
+  import_path: "github.com/containers/ocicrypt"
+  version: "v1.1.1"
+  bazel_name: "com_github_containers_ocicrypt"
+  sum: "h1:prL8l9w3ntVqXvNH1CiNn5ENjcCnr38JqpSyvKKB4GI="
+  semver: "v1.1.1"
+>
+entry: <
   import_path: "github.com/coredns/coredns"
   version: "v1.7.0"
   bazel_name: "com_github_coredns_coredns"
@@ -615,6 +755,13 @@
   semver: "v22.1.0"
 >
 entry: <
+  import_path: "github.com/coreos/go-systemd/v22"
+  version: "v22.3.2"
+  bazel_name: "com_github_coreos_go_systemd_v22"
+  sum: "h1:D9/bQk5vlXQFZ6Kwuu6zaiXJ9oTPe68++AzAJc1DzSI="
+  semver: "v22.3.2"
+>
+entry: <
   import_path: "github.com/coreos/pkg"
   version: "v0.0.0-20180108230652-97fdf19511ea"
   bazel_name: "com_github_coreos_pkg"
@@ -657,6 +804,13 @@
   semver: "v2.0.0"
 >
 entry: <
+  import_path: "github.com/cpuguy83/go-md2man/v2"
+  version: "v2.0.0-20190314233015-f79a8a8ca69d"
+  bazel_name: "com_github_cpuguy83_go_md2man_v2"
+  sum: "h1:U+s90UTSYgptZMwQh2aRr3LuazLJIa+Pg3Kc1ylSYVY="
+  semver: "v2.0.0-20190314233015-f79a8a8ca69d"
+>
+entry: <
   import_path: "github.com/cyphar/filepath-securejoin"
   version: "v0.2.2"
   bazel_name: "com_github_cyphar_filepath_securejoin"
@@ -741,6 +895,13 @@
   semver: "v17.12.0-ce-rc1.0.20191121165722-d1d5f6476656+incompatible"
 >
 entry: <
+  import_path: "github.com/docker/docker"
+  version: "v1.4.2-0.20200309214505-aa6a9891b09c"
+  bazel_name: "com_github_docker_docker"
+  sum: "h1:zviRyz1SWO8+WVJbi9/jlJCkrsZ54r/lTRbgtcaQhLs="
+  semver: "v1.4.2-0.20200309214505-aa6a9891b09c"
+>
+entry: <
   import_path: "github.com/docker/go-connections"
   version: "v0.3.0"
   bazel_name: "com_github_docker_go_connections"
@@ -769,6 +930,13 @@
   semver: "v0.0.0-20190806004212-e31b211e4f1c"
 >
 entry: <
+  import_path: "github.com/docker/go-events"
+  version: "v0.0.0-20190806004212-e31b211e4f1c"
+  bazel_name: "com_github_docker_go_events"
+  sum: "h1:+pKlWGMw7gf6bQ+oDZB4KHQFypsfjYlq/C4rfL7D3g8="
+  semver: "v0.0.0-20190806004212-e31b211e4f1c"
+>
+entry: <
   import_path: "github.com/docker/go-metrics"
   version: "b619b3592b65de4f087d9f16863a7e6ff905973c"
   bazel_name: "com_github_docker_go_metrics"
@@ -804,6 +972,13 @@
   semver: "v0.0.0-20160310174837-449fdfce4d96"
 >
 entry: <
+  import_path: "github.com/docker/spdystream"
+  version: "v0.0.0-20160310174837-449fdfce4d96"
+  bazel_name: "com_github_docker_spdystream"
+  sum: "h1:cenwrSVm+Z7QLSV/BsnenAOcDXdX4cMv4wP0B/5QbPg="
+  semver: "v0.0.0-20160310174837-449fdfce4d96"
+>
+entry: <
   import_path: "github.com/dustin/go-humanize"
   version: "v1.0.0"
   bazel_name: "com_github_dustin_go_humanize"
@@ -832,6 +1007,13 @@
   semver: "v2.9.5+incompatible"
 >
 entry: <
+  import_path: "github.com/emicklei/go-restful"
+  version: "v2.9.5+incompatible"
+  bazel_name: "com_github_emicklei_go_restful"
+  sum: "h1:spTtZBk5DYEvbxMVutUuTyh1Ao2r4iyvLdACqsl/Ljk="
+  semver: "v2.9.5+incompatible"
+>
+entry: <
   import_path: "github.com/envoyproxy/protoc-gen-validate"
   version: "v0.1.0"
   bazel_name: "com_github_envoyproxy_protoc_gen_validate"
@@ -938,6 +1120,13 @@
 >
 entry: <
   import_path: "github.com/go-logr/logr"
+  version: "v0.1.0"
+  bazel_name: "com_github_go_logr_logr"
+  sum: "h1:M1Tv3VzNlEHg6uyACnRdtrploV2P7wZqH8BoQMtz0cg="
+  semver: "v0.1.0"
+>
+entry: <
+  import_path: "github.com/go-logr/logr"
   version: "v0.2.0"
   bazel_name: "com_github_go_logr_logr"
   sum: "h1:QvGt2nLcHH0WK9orKa+ppBPAxREcH364nPUedEpK0TY="
@@ -1035,6 +1224,13 @@
   semver: "v5.0.3"
 >
 entry: <
+  import_path: "github.com/godbus/dbus/v5"
+  version: "v5.0.4"
+  bazel_name: "com_github_godbus_dbus_v5"
+  sum: "h1:9349emZab16e7zQvpmsbtjc18ykshndd8y2PG3sgJbA="
+  semver: "v5.0.4"
+>
+entry: <
   import_path: "github.com/gofrs/flock"
   version: "v0.6.1-0.20180915234121-886344bea079"
   bazel_name: "com_github_gofrs_flock"
@@ -1042,6 +1238,13 @@
   semver: "v0.6.1-0.20180915234121-886344bea079"
 >
 entry: <
+  import_path: "github.com/gofrs/flock"
+  version: "v0.8.0"
+  bazel_name: "com_github_gofrs_flock"
+  sum: "h1:MSdYClljsF3PbENUUEx85nkWfJSGfzYI9yEBZOJz6CY="
+  semver: "v0.8.0"
+>
+entry: <
   import_path: "github.com/gofrs/uuid"
   version: "v3.2.0"
   bazel_name: "com_github_gofrs_uuid"
@@ -1077,6 +1280,13 @@
   semver: "v1.3.1"
 >
 entry: <
+  import_path: "github.com/gogo/protobuf"
+  version: "v1.3.2"
+  bazel_name: "com_github_gogo_protobuf"
+  sum: "h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q="
+  semver: "v1.3.2"
+>
+entry: <
   import_path: "github.com/golang/groupcache"
   version: "v0.0.0-20160516000752-02826c3e7903"
   bazel_name: "com_github_golang_groupcache"
@@ -1133,6 +1343,27 @@
   semver: "v0.37.3"
 >
 entry: <
+  import_path: "github.com/google/cadvisor"
+  version: "v0.37.5"
+  bazel_name: "com_github_google_cadvisor"
+  sum: "h1:7JxmD4TqlGk/B+bsabeBNL3YS+ppVjx74EUnautkVfk="
+  semver: "v0.37.5"
+>
+entry: <
+  import_path: "github.com/google/cadvisor"
+  version: "v0.39.2"
+  bazel_name: "com_github_google_cadvisor"
+  sum: "h1:SzgL5IYoMZEFVA9usi0xCy8SXSVXKQ6aL/rYs/kQjXE="
+  semver: "v0.39.2"
+>
+entry: <
+  import_path: "github.com/google/cadvisor"
+  version: "v0.43.0"
+  bazel_name: "com_github_google_cadvisor"
+  sum: "h1:z0ULgYPKZ7L/c7Zjq+ZD6ltklWwYdCSvBMgSjNC/hGo="
+  semver: "v0.43.0"
+>
+entry: <
   import_path: "github.com/google/certificate-transparency-go"
   version: "v1.1.0"
   bazel_name: "com_github_google_certificate_transparency_go"
@@ -1176,6 +1407,13 @@
 >
 entry: <
   import_path: "github.com/google/gofuzz"
+  version: "v1.0.0"
+  bazel_name: "com_github_google_gofuzz"
+  sum: "h1:A8PeW59pxE9IoFRqBp37U+mSNaQoZ46F1f0f863XSXw="
+  semver: "v1.0.0"
+>
+entry: <
+  import_path: "github.com/google/gofuzz"
   version: "v1.1.0"
   bazel_name: "com_github_google_gofuzz"
   sum: "h1:Hsa8mG0dQ46ij8Sl2AYJDUv1oA9/d6Vk+3LG99Oe02g="
@@ -1210,6 +1448,13 @@
   semver: "v0.0.0-20201216082428-b645fcd241a8"
 >
 entry: <
+  import_path: "github.com/google/gvisor"
+  version: "release-20211101.0"
+  bazel_name: "com_github_google_gvisor"
+  sum: "h1:DLypxrLRMq0P4f96vlutTfJpM5/Y8q6rDafgBU1pxAs="
+  semver: "v0.0.0-20211029210316-b822923b706d"
+>
+entry: <
   import_path: "github.com/google/gvisor-containerd-shim"
   version: "104a0ad08c8346a17d56287beb9756b8d52f684f"
   bazel_name: "com_github_google_gvisor_containerd_shim"
@@ -1259,6 +1504,13 @@
   semver: "v1.1.1"
 >
 entry: <
+  import_path: "github.com/google/uuid"
+  version: "v1.2.0"
+  bazel_name: "com_github_google_uuid"
+  sum: "h1:qJYtXnJRWmpe7m/3XlyhrsLrEURqHRM2kxzoxXqyUDs="
+  semver: "v1.2.0"
+>
+entry: <
   import_path: "github.com/googleapis/gnostic"
   version: "v0.4.1"
   bazel_name: "com_github_googleapis_gnostic"
@@ -1393,6 +1645,20 @@
 >
 entry: <
   import_path: "github.com/hashicorp/golang-lru"
+  version: "v0.5.0"
+  bazel_name: "com_github_hashicorp_golang_lru"
+  sum: "h1:CL2msUPvZTLb5O648aiLNJw3hnBxN2+1Jq8rCOH9wdo="
+  semver: "v0.5.0"
+>
+entry: <
+  import_path: "github.com/hashicorp/golang-lru"
+  version: "v0.5.1"
+  bazel_name: "com_github_hashicorp_golang_lru"
+  sum: "h1:0hERBMJE1eitiLkihrMvRVBYAkpHzc/J3QdDN+dAcgU="
+  semver: "v0.5.1"
+>
+entry: <
+  import_path: "github.com/hashicorp/golang-lru"
   version: "v0.5.3"
   bazel_name: "com_github_hashicorp_golang_lru"
   sum: "h1:YPkqC67at8FYaadspW/6uE0COsBxS2656RLEr8Bppgk="
@@ -1435,6 +1701,13 @@
 >
 entry: <
   import_path: "github.com/imdario/mergo"
+  version: "v0.3.12"
+  bazel_name: "com_github_imdario_mergo"
+  sum: "h1:b6R2BslTbIEToALKP7LxUvijTsNI9TAe80pLWN2g/HU="
+  semver: "v0.3.12"
+>
+entry: <
+  import_path: "github.com/imdario/mergo"
   version: "v0.3.7"
   bazel_name: "com_github_imdario_mergo"
   sum: "h1:Y+UAYTZ7gDEuOfhxKWy+dvb5dRQ6rJjFSdX2HZY1/gI="
@@ -1505,6 +1778,13 @@
 >
 entry: <
   import_path: "github.com/json-iterator/go"
+  version: "v1.1.6"
+  bazel_name: "com_github_json_iterator_go"
+  sum: "h1:MrUvLMLTMxbqFJ9kzlvat/rYZqZnW3u4wkLzWTaFwKs="
+  semver: "v1.1.6"
+>
+entry: <
+  import_path: "github.com/json-iterator/go"
   version: "v1.1.9"
   bazel_name: "com_github_json_iterator_go"
   sum: "h1:9yzud/Ht36ygwatGx56VwCZtlI/2AD15T1X2sjSuGns="
@@ -1532,6 +1812,13 @@
   semver: "v3.16.0+incompatible"
 >
 entry: <
+  import_path: "github.com/klauspost/compress"
+  version: "v1.11.13"
+  bazel_name: "com_github_klauspost_compress"
+  sum: "h1:eSvu8Tmq6j2psUJqJrLcWH6K3w5Dwc+qipbaA6eVEN4="
+  semver: "v1.11.13"
+>
+entry: <
   import_path: "github.com/koneu/natend"
   version: "v0.0.0-20150829182554-ec0926ea948d"
   bazel_name: "com_github_koneu_natend"
@@ -1547,6 +1834,13 @@
 >
 entry: <
   import_path: "github.com/konsorten/go-windows-terminal-sequences"
+  version: "v1.0.1"
+  bazel_name: "com_github_konsorten_go_windows_terminal_sequences"
+  sum: "h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk="
+  semver: "v1.0.1"
+>
+entry: <
+  import_path: "github.com/konsorten/go-windows-terminal-sequences"
   version: "v1.0.3"
   bazel_name: "com_github_konsorten_go_windows_terminal_sequences"
   sum: "h1:CE8S1cTafDpPvMhIxNJKvHsGVBgn1xWYf1NbHQhywc8="
@@ -1567,6 +1861,13 @@
   semver: "v0.2.0"
 >
 entry: <
+  import_path: "github.com/kr/pretty"
+  version: "v0.2.1"
+  bazel_name: "com_github_kr_pretty"
+  sum: "h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI="
+  semver: "v0.2.1"
+>
+entry: <
   import_path: "github.com/kr/pty"
   version: "v1.1.1"
   bazel_name: "com_github_kr_pty"
@@ -1672,6 +1973,13 @@
   semver: "v1.0.1"
 >
 entry: <
+  import_path: "github.com/matttproud/golang_protobuf_extensions"
+  version: "v1.0.2-0.20181231171920-c182affec369"
+  bazel_name: "com_github_matttproud_golang_protobuf_extensions"
+  sum: "h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI="
+  semver: "v1.0.2-0.20181231171920-c182affec369"
+>
+entry: <
   import_path: "github.com/mdlayher/ethernet"
   version: "0394541c37b7f86a10e0b49492f6d4f605c34163"
   bazel_name: "com_github_mdlayher_ethernet"
@@ -1742,6 +2050,13 @@
   semver: "v1.1.4"
 >
 entry: <
+  import_path: "github.com/miekg/pkcs11"
+  version: "v1.0.3"
+  bazel_name: "com_github_miekg_pkcs11"
+  sum: "h1:iMwmD7I5225wv84WxIG/bmxz9AXjWvTWIbM/TYHvWtw="
+  semver: "v1.0.3"
+>
+entry: <
   import_path: "github.com/mindprince/gonvml"
   version: "v0.0.0-20190828220739-9ebdce4bb989"
   bazel_name: "com_github_mindprince_gonvml"
@@ -1770,6 +2085,13 @@
   semver: "v1.1.2"
 >
 entry: <
+  import_path: "github.com/moby/locker"
+  version: "v1.0.1"
+  bazel_name: "com_github_moby_locker"
+  sum: "h1:fOXqR41zeveg4fFODix+1Ch4mj/gT0NE1XJbp/epuBg="
+  semver: "v1.0.1"
+>
+entry: <
   import_path: "github.com/moby/sys"
   version: "95fd265abb1e7d346dd00882d49fd717d17317b8"
   bazel_name: "com_github_moby_sys"
@@ -1791,6 +2113,20 @@
   semver: "v0.1.3"
 >
 entry: <
+  import_path: "github.com/moby/sys/mountinfo"
+  version: "v0.4.1"
+  bazel_name: "com_github_moby_sys_mountinfo"
+  sum: "h1:1O+1cHA1aujwEwwVMa2Xm2l+gIpUHyd3+D+d7LZh1kM="
+  semver: "v0.4.1"
+>
+entry: <
+  import_path: "github.com/moby/sys/symlink"
+  version: "v0.1.0"
+  bazel_name: "com_github_moby_sys_symlink"
+  sum: "h1:MTFZ74KtNI6qQQpuBxU+uKCim4WtOMokr03hCfJcazE="
+  semver: "v0.1.0"
+>
+entry: <
   import_path: "github.com/moby/term"
   version: "v0.0.0-20200312100748-672ec06f55cd"
   bazel_name: "com_github_moby_term"
@@ -1812,6 +2148,20 @@
   semver: "v0.0.0-20180306012644-bacd9c7ef1dd"
 >
 entry: <
+  import_path: "github.com/modern-go/concurrent"
+  version: "v0.0.0-20180228061459-e0a39a4cb421"
+  bazel_name: "com_github_modern_go_concurrent"
+  sum: "h1:ZqeYNhU3OHLH3mGKHDcjJRFFRrJa6eAM5H+CtDdOsPc="
+  semver: "v0.0.0-20180228061459-e0a39a4cb421"
+>
+entry: <
+  import_path: "github.com/modern-go/concurrent"
+  version: "v0.0.0-20180306012644-bacd9c7ef1dd"
+  bazel_name: "com_github_modern_go_concurrent"
+  sum: "h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg="
+  semver: "v0.0.0-20180306012644-bacd9c7ef1dd"
+>
+entry: <
   import_path: "github.com/modern-go/reflect2"
   version: "4b7aa43c6742a2c18fdef89dd197aaae7dac7ccd"
   bazel_name: "com_github_modern_go_reflect2"
@@ -1820,6 +2170,13 @@
 >
 entry: <
   import_path: "github.com/modern-go/reflect2"
+  version: "v0.0.0-20180701023420-4b7aa43c6742"
+  bazel_name: "com_github_modern_go_reflect2"
+  sum: "h1:Esafd1046DLDQ0W1YjYsBW+p8U2u7vzgW2SQVmlNazg="
+  semver: "v0.0.0-20180701023420-4b7aa43c6742"
+>
+entry: <
+  import_path: "github.com/modern-go/reflect2"
   version: "v1.0.1"
   bazel_name: "com_github_modern_go_reflect2"
   sum: "h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI="
@@ -1966,6 +2323,13 @@
   semver: "v1.0.0-rc92"
 >
 entry: <
+  import_path: "github.com/opencontainers/runc"
+  version: "v1.0.2"
+  bazel_name: "com_github_opencontainers_runc"
+  sum: "h1:opHZMaswlyxz1OuGpBE53Dwe4/xF7EZTY0A2L/FpCOg="
+  semver: "v1.0.2"
+>
+entry: <
   import_path: "github.com/opencontainers/runtime-spec"
   version: "237cc4f519e2e8f9b235bacccfa8ef5a84df2875"
   bazel_name: "com_github_opencontainers_runtime-spec"
@@ -1994,6 +2358,13 @@
   semver: "v1.0.2-0.20181111125026-1722abf79c2f"
 >
 entry: <
+  import_path: "github.com/opencontainers/runtime-spec"
+  version: "v1.0.3-0.20210326190908-1c3f411f0417"
+  bazel_name: "com_github_opencontainers_runtime_spec"
+  sum: "h1:3snG66yBm59tKhhSPQrQ/0bCrv1LQbKt40LnUPiUxdc="
+  semver: "v1.0.3-0.20210326190908-1c3f411f0417"
+>
+entry: <
   import_path: "github.com/opencontainers/selinux"
   version: "5215b1806f52b1fcc2070a8826c542c9d33cd3cf"
   bazel_name: "com_github_opencontainers_selinux"
@@ -2015,6 +2386,13 @@
   semver: "v1.6.0"
 >
 entry: <
+  import_path: "github.com/opencontainers/selinux"
+  version: "v1.8.2"
+  bazel_name: "com_github_opencontainers_selinux"
+  sum: "h1:c4ca10UMgRcvZ6h0K4HtS15UaVSBEaE+iln2LVpAuGc="
+  semver: "v1.8.2"
+>
+entry: <
   import_path: "github.com/opentracing/opentracing-go"
   version: "v1.1.0"
   bazel_name: "com_github_opentracing_opentracing_go"
@@ -2120,6 +2498,13 @@
   semver: "v1.6.0"
 >
 entry: <
+  import_path: "github.com/prometheus/client_golang"
+  version: "v1.7.1"
+  bazel_name: "com_github_prometheus_client_golang"
+  sum: "h1:NTGy1Ja9pByO+xAeH/qiWnLrKtr3hJPNjaVUwnjpdpA="
+  semver: "v1.7.1"
+>
+entry: <
   import_path: "github.com/prometheus/client_model"
   version: "d1d2010b5beead3fa1c5f271a5cf626e40b3ad6e"
   bazel_name: "com_github_prometheus_client_model"
@@ -2128,6 +2513,13 @@
 >
 entry: <
   import_path: "github.com/prometheus/client_model"
+  version: "v0.0.0-20180712105110-5c3871d89910"
+  bazel_name: "com_github_prometheus_client_model"
+  sum: "h1:idejC8f05m9MGOsuEi1ATq9shN03HrxNkD/luQvxCv8="
+  semver: "v0.0.0-20180712105110-5c3871d89910"
+>
+entry: <
+  import_path: "github.com/prometheus/client_model"
   version: "v0.2.0"
   bazel_name: "com_github_prometheus_client_model"
   sum: "h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M="
@@ -2142,6 +2534,20 @@
 >
 entry: <
   import_path: "github.com/prometheus/common"
+  version: "v0.0.0-20181113130724-41aa239b4cce"
+  bazel_name: "com_github_prometheus_common"
+  sum: "h1:X0jFYGnHemYDIW6jlc+fSI8f9Cg+jqCnClYP2WgZT/A="
+  semver: "v0.0.0-20181113130724-41aa239b4cce"
+>
+entry: <
+  import_path: "github.com/prometheus/common"
+  version: "v0.10.0"
+  bazel_name: "com_github_prometheus_common"
+  sum: "h1:RyRA7RzGXQZiW+tGMr7sxa85G1z0yOpM1qq5c8lNawc="
+  semver: "v0.10.0"
+>
+entry: <
+  import_path: "github.com/prometheus/common"
   version: "v0.9.1"
   bazel_name: "com_github_prometheus_common"
   sum: "h1:KOMtN28tlbam3/7ZKEYKHhKoJZYYj3gMH4uc62x7X7U="
@@ -2162,6 +2568,13 @@
   semver: "v0.0.11"
 >
 entry: <
+  import_path: "github.com/prometheus/procfs"
+  version: "v0.6.0"
+  bazel_name: "com_github_prometheus_procfs"
+  sum: "h1:mxy4L2jP6qMonqmq+aTtOx1ifVWUgG/TAmntgbh3xv4="
+  semver: "v0.6.0"
+>
+entry: <
   import_path: "github.com/rekby/gpt"
   version: "a930afbc6edcc89c83d39b79e52025698156178d"
   bazel_name: "com_github_rekby_gpt"
@@ -2281,6 +2694,13 @@
   semver: "v1.6.0"
 >
 entry: <
+  import_path: "github.com/sirupsen/logrus"
+  version: "v1.8.1"
+  bazel_name: "com_github_sirupsen_logrus"
+  sum: "h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE="
+  semver: "v1.8.1"
+>
+entry: <
   import_path: "github.com/soheilhy/cmux"
   version: "v0.1.4"
   bazel_name: "com_github_soheilhy_cmux"
@@ -2351,6 +2771,13 @@
   semver: "v1.9.0"
 >
 entry: <
+  import_path: "github.com/stefanberger/go-pkcs11uri"
+  version: "v0.0.0-20201008174630-78d3cae3a980"
+  bazel_name: "com_github_stefanberger_go_pkcs11uri"
+  sum: "h1:lIOOHPEbXzO3vnmx2gok1Tfs31Q8GQqKLc8vVqyQq/I="
+  semver: "v0.0.0-20201008174630-78d3cae3a980"
+>
+entry: <
   import_path: "github.com/stretchr/testify"
   version: "221dbe5ed46703ee255b1da0dec05086f5035f62"
   bazel_name: "com_github_stretchr_testify"
@@ -2379,6 +2806,13 @@
   semver: "v0.0.0-20180916011248-d98352740cb2"
 >
 entry: <
+  import_path: "github.com/syndtr/gocapability"
+  version: "v0.0.0-20200815063812-42c35b437635"
+  bazel_name: "com_github_syndtr_gocapability"
+  sum: "h1:kdXcSzyDtseVEc4yCz2qF8ZrQvIDBJLl4S1c3GCXmoI="
+  semver: "v0.0.0-20200815063812-42c35b437635"
+>
+entry: <
   import_path: "github.com/tchap/go-patricia"
   version: "666120de432aea38ab06bd5c818f04f4129882c9"
   bazel_name: "com_github_tchap_go_patricia"
@@ -2393,6 +2827,13 @@
   semver: "v2.2.6+incompatible"
 >
 entry: <
+  import_path: "github.com/tchap/go-patricia"
+  version: "v2.2.6+incompatible"
+  bazel_name: "com_github_tchap_go_patricia"
+  sum: "h1:JvoDL7JSoIP2HDE8AbDH3zC8QBPxmzYe32HHy5yQ+Ck="
+  semver: "v2.2.6+incompatible"
+>
+entry: <
   import_path: "github.com/tmc/grpc-websocket-proxy"
   version: "v0.0.0-20170815181823-89b8d40f7ca8"
   bazel_name: "com_github_tmc_grpc_websocket_proxy"
@@ -2533,6 +2974,13 @@
   semver: "v1.1.2"
 >
 entry: <
+  import_path: "go.mozilla.org/pkcs7"
+  version: "v0.0.0-20200128120323-432b2356ecb1"
+  bazel_name: "org_mozilla_go_pkcs7"
+  sum: "h1:A/5uWzF44DlIgdm/PQFwfMkW0JX+cIcQi/SwLAmZP5M="
+  semver: "v0.0.0-20200128120323-432b2356ecb1"
+>
+entry: <
   import_path: "go.opencensus.io"
   version: "9c377598961b706d1542bd2d84d538b5094d596e"
   bazel_name: "io_opencensus_go"
@@ -2541,12 +2989,26 @@
 >
 entry: <
   import_path: "go.opencensus.io"
+  version: "v0.21.0"
+  bazel_name: "io_opencensus_go"
+  sum: "h1:mU6zScU4U1YAFPHEHYk+3JC4SY7JxgkqS10ZOSyksNg="
+  semver: "v0.21.0"
+>
+entry: <
+  import_path: "go.opencensus.io"
   version: "v0.22.0"
   bazel_name: "io_opencensus_go"
   sum: "h1:C9hSCOW830chIVkdja34wa6Ky+IzWllkUinR+BtRZd4="
   semver: "v0.22.0"
 >
 entry: <
+  import_path: "go.opencensus.io"
+  version: "v0.22.3"
+  bazel_name: "io_opencensus_go"
+  sum: "h1:8sGtKOrtQqkN1bp2AtX+misvLIlOmsEsNd+9NIcPEm8="
+  semver: "v0.22.3"
+>
+entry: <
   import_path: "go.starlark.net"
   version: "v0.0.0-20190702223751-32f345186213"
   bazel_name: "net_starlark_go"
@@ -2617,6 +3079,20 @@
   semver: "v0.0.0-20200220183623-bac4c82f6975"
 >
 entry: <
+  import_path: "golang.org/x/crypto"
+  version: "v0.0.0-20180904163835-0709b304e793"
+  bazel_name: "org_golang_x_crypto"
+  sum: "h1:u+LnwYTOOW7Ukr/fppxEb1Nwz0AtPflrblfvUudpo+I="
+  semver: "v0.0.0-20180904163835-0709b304e793"
+>
+entry: <
+  import_path: "golang.org/x/crypto"
+  version: "v0.0.0-20210322153248-0c34fe9e7dc2"
+  bazel_name: "org_golang_x_crypto"
+  sum: "h1:It14KIkyBFYkHkwZ7k45minvA9aorojkyjGk9KJ5B/w="
+  semver: "v0.0.0-20210322153248-0c34fe9e7dc2"
+>
+entry: <
   import_path: "golang.org/x/mod"
   version: "v0.3.0"
   bazel_name: "org_golang_x_mod"
@@ -2659,6 +3135,20 @@
   semver: "v0.0.0-20191202225959-858c2ad4c8b6"
 >
 entry: <
+  import_path: "golang.org/x/oauth2"
+  version: "v0.0.0-20180821212333-d2e6202438be"
+  bazel_name: "org_golang_x_oauth2"
+  sum: "h1:vEDujvNQGv4jgYKudGeI/+DAX4Jffq6hpD55MmoEvKs="
+  semver: "v0.0.0-20180821212333-d2e6202438be"
+>
+entry: <
+  import_path: "golang.org/x/oauth2"
+  version: "v0.0.0-20200107190931-bf48bf16ab8d"
+  bazel_name: "org_golang_x_oauth2"
+  sum: "h1:TzXSXBo42m9gQenoE3b9BGiEpg5IG2JkU5FkPIawgtw="
+  semver: "v0.0.0-20200107190931-bf48bf16ab8d"
+>
+entry: <
   import_path: "golang.org/x/sync"
   version: "42b317875d0fa942474b76e1b46a6060d720ae6e"
   bazel_name: "org_golang_x_sync"
@@ -2666,6 +3156,13 @@
   semver: "v0.0.0-20181108010431-42b317875d0f"
 >
 entry: <
+  import_path: "golang.org/x/sync"
+  version: "v0.0.0-20201207232520-09787c993a3a"
+  bazel_name: "org_golang_x_sync"
+  sum: "h1:DcqTD9SDLc+1P/r1EmRBwnVsrOwW+kk2vWf9n+1sGhs="
+  semver: "v0.0.0-20201207232520-09787c993a3a"
+>
+entry: <
   import_path: "golang.org/x/sys"
   version: "9dae0f8f577553e0f21298e18926efc9644c281d"
   bazel_name: "org_golang_x_sys"
@@ -2687,6 +3184,13 @@
   semver: "v0.0.0-20200622214017-ed371f2e16b4"
 >
 entry: <
+  import_path: "golang.org/x/term"
+  version: "v0.0.0-20201126162022-7de9c90e9dd1"
+  bazel_name: "org_golang_x_term"
+  sum: "h1:v+OssWQX+hTHEmOBgwxdZxK4zHq3yOs8F9J7mk0PY8E="
+  semver: "v0.0.0-20201126162022-7de9c90e9dd1"
+>
+entry: <
   import_path: "golang.org/x/text"
   version: "v0.3.0"
   bazel_name: "org_golang_x_text"
@@ -2743,6 +3247,13 @@
   semver: "v0.0.0-20200224152610-e50cd9704f63"
 >
 entry: <
+  import_path: "google.golang.org/genproto"
+  version: "v0.0.0-20200224152610-e50cd9704f63"
+  bazel_name: "org_golang_google_genproto"
+  sum: "h1:YzfoEYWbODU5Fbt37+h7X16BWQbad7Q4S6gclTKFXM8="
+  semver: "v0.0.0-20200224152610-e50cd9704f63"
+>
+entry: <
   import_path: "google.golang.org/grpc"
   version: "v1.26.0"
   bazel_name: "org_golang_google_grpc"
@@ -2835,12 +3346,26 @@
 >
 entry: <
   import_path: "gopkg.in/yaml.v2"
+  version: "v2.0.0-20170812160011-eb3733d160e7"
+  bazel_name: "in_gopkg_yaml_v2"
+  sum: "h1:+t9dhfO+GNOIGJof6kPOAenx7YgrZMTdRPV+EsnPabk="
+  semver: "v2.0.0-20170812160011-eb3733d160e7"
+>
+entry: <
+  import_path: "gopkg.in/yaml.v2"
   version: "v2.2.8"
   bazel_name: "in_gopkg_yaml_v2"
   sum: "h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10="
   semver: "v2.2.8"
 >
 entry: <
+  import_path: "gopkg.in/yaml.v2"
+  version: "v2.4.0"
+  bazel_name: "in_gopkg_yaml_v2"
+  sum: "h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY="
+  semver: "v2.4.0"
+>
+entry: <
   import_path: "gotest.tools"
   version: "1083505acf35a0bd8a696b26837e1fb3187a7a83"
   bazel_name: "tools_gotest"
@@ -3205,6 +3730,13 @@
   semver: "v0.19.8-rc.0"
 >
 entry: <
+  import_path: "k8s.io/cri-api"
+  version: "v0.20.12"
+  bazel_name: "io_k8s_cri_api"
+  sum: "h1:kPP6EnSTdGb+RNiJDJkPTMpPxTQsdTw4rjLRR5ze5CA="
+  semver: "v0.20.12"
+>
+entry: <
   import_path: "k8s.io/csi-translation-lib"
   version: "kubernetes-1.19.0-alpha.2"
   bazel_name: "io_k8s_csi_translation_lib"
@@ -3282,6 +3814,13 @@
   semver: "v2.2.0"
 >
 entry: <
+  import_path: "k8s.io/klog/v2"
+  version: "v2.4.0"
+  bazel_name: "io_k8s_klog_v2"
+  sum: "h1:7+X0fUguPyrKEC4WjH8iGDg3laWgMo5tMnRTIGTTxGQ="
+  semver: "v2.4.0"
+>
+entry: <
   import_path: "k8s.io/kube-aggregator"
   version: "kubernetes-1.19.0-alpha.2"
   bazel_name: "io_k8s_kube_aggregator"
@@ -3745,6 +4284,13 @@
 >
 entry: <
   import_path: "sigs.k8s.io/yaml"
+  version: "v1.1.0"
+  bazel_name: "io_k8s_sigs_yaml"
+  sum: "h1:4A07+ZFc2wgJwo8YNlQpr1rVlgUDlxXHhPJciaPY5gs="
+  semver: "v1.1.0"
+>
+entry: <
+  import_path: "sigs.k8s.io/yaml"
   version: "v1.2.0"
   bazel_name: "io_k8s_sigs_yaml"
   sum: "h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q="