Merge pull request #63111 from ixdy/rpm-rules-manual

Automatic merge from submit-queue. 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>.

Tag pkg_rpm rules as manual

**What this PR does / why we need it**: Mitigation step for #63108. Nothing depends on these rules yet, and tagging as manual prevents `make bazel-build` from building them, too.

**Release note**:

```release-note
NONE
```

/assign @BenTheElder 
/cc @sigma
This commit is contained in:
Kubernetes Submit Queue 2018-04-25 00:17:32 -07:00 committed by GitHub
commit 4dfd4b219c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,6 +10,7 @@ pkg_rpm(
"//cmd/kubectl",
],
spec_file = "kubectl.spec",
tags = ["manual"],
version_file = "//build:os_package_version",
)
@ -22,6 +23,7 @@ pkg_rpm(
"//cmd/kubelet",
],
spec_file = "kubelet.spec",
tags = ["manual"],
version_file = "//build:os_package_version",
)
@ -35,6 +37,7 @@ pkg_rpm(
"//cmd/kubeadm",
],
spec_file = "kubeadm.spec",
tags = ["manual"],
version_file = "//build:os_package_version",
)
@ -46,6 +49,7 @@ pkg_rpm(
"@kubernetes_cni//file",
],
spec_file = "kubernetes-cni.spec",
tags = ["manual"],
version_file = "//build:cni_package_version",
)