Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing helm/charts from test-infra #19946

Merged
merged 1 commit into from
Nov 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions config/jobs/helm/charts/OWNERS

This file was deleted.

53 changes: 0 additions & 53 deletions config/jobs/helm/charts/charts.yaml

This file was deleted.

14 changes: 0 additions & 14 deletions config/prow/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -440,19 +440,6 @@ tide:
- do-not-merge/invalid-owners-file
- do-not-merge/work-in-progress
- needs-rebase
- repos:
- helm/charts
labels:
- lgtm
- approved
- "Contribution Allowed"
missingLabels:
- do-not-merge
- do-not-merge/blocked-paths
- do-not-merge/hold
- do-not-merge/invalid-owners-file
- do-not-merge/work-in-progress
- needs-rebase
- orgs:
- kubernetes
- kubernetes-client
Expand Down Expand Up @@ -561,7 +548,6 @@ tide:
- do-not-merge/work-in-progress

merge_method:
helm/charts: squash
kubeflow: squash
kubernetes-client/csharp: squash
kubernetes-client/gen: squash
Expand Down
16 changes: 0 additions & 16 deletions config/prow/plugins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ owners:
- kubernetes/website
skip_collaborators:
- kubernetes-sigs/contributor-playground
- helm/charts

approve:
- repos:
Expand Down Expand Up @@ -96,10 +95,6 @@ approve:
- kubernetes/cloud-provider-gcp
require_self_approval: false
ignore_review_state: false
- repos:
- helm/charts
require_self_approval: false
lgtm_acts_as_approve: true

# Lower bounds in number of lines changed; XS is assumed to be zero.
size:
Expand Down Expand Up @@ -672,17 +667,6 @@ plugins:
- wip # Applies a label to PRs with wip in the title to block merge
- trigger

helm/charts:
- approve
- assign
- blunderbuss
- cla
- hold
- lgtm
- trigger
- verify-owners
- wip

kubernetes:
- approve
- assign
Expand Down
1 change: 0 additions & 1 deletion prow/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ Prow is used by the following organizations and projects:
- [Kubeflow](https://github.com/kubeflow)
- [Azure AKS Engine](https://github.com/Azure/aks-engine/tree/master/.prowci)
- [tensorflow/minigo](https://github.com/tensorflow/minigo#automated-tests)
- [helm/charts](https://github.com/helm/charts)
- [Daisy(google compute image tools)](https://github.com/GoogleCloudPlatform/compute-image-tools/tree/master/test-infra#prow-and-gubenator)
- [KubeEdge (Kubernetes Native Edge Computing Framework)](https://github.com/kubeedge/kubeedge)
- [Volcano (Kubernetes Native Batch System)](https://github.com/volcano-sh/volcano)
Expand Down
31 changes: 0 additions & 31 deletions prow/config/tide_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,6 @@ func TestMergeMethod(t *testing.T) {
ti := &Tide{
MergeType: map[string]github.PullRequestMergeType{
"kubernetes/kops": github.MergeRebase,
"kubernetes/charts": github.MergeSquash,
"helm/charts": github.MergeSquash,
"kubernetes-helm": github.MergeSquash,
"kubernetes-helm/chartmuseum": github.MergeMerge,
},
Expand All @@ -131,11 +129,6 @@ func TestMergeMethod(t *testing.T) {
"kops",
github.MergeRebase,
},
{
"kubernetes",
"charts",
github.MergeSquash,
},
{
"kubernetes-helm",
"monocular",
Expand All @@ -162,14 +155,6 @@ func TestMergeTemplate(t *testing.T) {
TitleTemplate: "",
BodyTemplate: "",
},
"kubernetes/charts": {
TitleTemplate: "{{ .Number }}",
BodyTemplate: "",
},
"helm/charts": {
TitleTemplate: "",
BodyTemplate: "{{ .Body }}",
},
"kubernetes-helm": {
TitleTemplate: "{{ .Title }}",
BodyTemplate: "{{ .Body }}",
Expand All @@ -195,22 +180,6 @@ func TestMergeTemplate(t *testing.T) {
BodyTemplate: "",
},
},
{
org: "kubernetes",
repo: "charts",
expected: TideMergeCommitTemplate{
TitleTemplate: "{{ .Number }}",
BodyTemplate: "",
},
},
{
org: "helm",
repo: "charts",
expected: TideMergeCommitTemplate{
TitleTemplate: "",
BodyTemplate: "{{ .Body }}",
},
},
{
org: "kubernetes-helm",
repo: "monocular",
Expand Down