Unverified Commit 2c93450f authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #65193 from luxas/fix_crictl_deb

Automatic merge from submit-queue (batch tested with PRs 64713, 65193, 65194). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. cri-tools deb: Rename cri_tools to the correct cri-tools **What this PR does / why we need it**: This deb was incorrectly named `cri_tools` in CI testing. We should make this match what we ship in official releases. **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes # **Special notes for your reviewer**: **Release note**: ```release-note NONE ``` @kubernetes/sig-cluster-lifecycle-pr-reviews @dims @ixdy
parents 7e773b8f 42b7940a
...@@ -14,7 +14,7 @@ release_filegroup( ...@@ -14,7 +14,7 @@ release_filegroup(
name = "debs", name = "debs",
srcs = [ srcs = [
":cloud-controller-manager.deb", ":cloud-controller-manager.deb",
":cri_tools.deb", ":cri-tools.deb",
":kubeadm.deb", ":kubeadm.deb",
":kubectl.deb", ":kubectl.deb",
":kubelet.deb", ":kubelet.deb",
...@@ -89,7 +89,7 @@ pkg_tar( ...@@ -89,7 +89,7 @@ pkg_tar(
) )
pkg_tar( pkg_tar(
name = "cri_tools-data", name = "cri-tools-data",
package_dir = "/usr/bin", package_dir = "/usr/bin",
deps = ["@cri_tools//file"], deps = ["@cri_tools//file"],
) )
...@@ -176,7 +176,7 @@ The Container Networking Interface tools for provisioning container networks. ...@@ -176,7 +176,7 @@ The Container Networking Interface tools for provisioning container networks.
) )
k8s_deb( k8s_deb(
name = "cri_tools", name = "cri-tools",
description = """Container Runtime Interface tools (crictl)""", description = """Container Runtime Interface tools (crictl)""",
version = CRI_TOOLS_VERSION, version = CRI_TOOLS_VERSION,
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment