Update Kubernetes to 1.18.0
Updates Kubernetes to 1.18.0 and removes patches that are no
longer needed. The directories themselves and the build code that deals
with patching is left intact since rebasing D389 and subsequent K8s work
would otherwise be unnecessarily complicated.
Test Plan: Should be covered by CI
X-Origin-Diff: phab/D470
GitOrigin-RevId: 5c7749926f0adcc8d58e3bff3ce6413bab1d797d
diff --git a/third_party/kubernetes/external.bzl b/third_party/kubernetes/external.bzl
index 77d7af2..66cb4f4 100644
--- a/third_party/kubernetes/external.bzl
+++ b/third_party/kubernetes/external.bzl
@@ -19,12 +19,12 @@
def kubernetes_external(name, version):
sums = {
"1.16.4": "3a49373ba56c73c282deb0cfa2ec7bfcc6bf46acb6992f01319eb703cbf68996",
+ "1.18.0": "d87be01d4c75ebf29f181fd6bfcfe7fdd097d9c519e50500e21e199f859e6226",
}
http_archive(
name = name,
patch_args = ["-p1"],
patches = [
- "//third_party/kubernetes/external:0001-avoid-unexpected-keyword-error-by-using-positional-p.patch",
],
sha256 = sums[version],
urls = ["https://dl.k8s.io/v%s/kubernetes-src.tar.gz" % version],