Commit 3888ea75 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #37208 from gmarek/controllers

Automatic merge from submit-queue (batch tested with PRs 37208, 37446, 37420) Change 'controller.go' filenames to more meaningfull ones Controller logic should sit in uniquely named file, not `controller.go`, as the latter makes it very hard to understand controller-manager logs. @deads2k @bgrant0607 @soltysh @gtank
parents 7d1a7eae 770e1c28
......@@ -13,8 +13,8 @@ load(
go_library(
name = "go_default_library",
srcs = [
"controller.go",
"controller_utils.go",
"certificate_controller.go",
"certificate_controller_utils.go",
"doc.go",
"groupapprove.go",
],
......
......@@ -13,7 +13,7 @@ load(
go_library(
name = "go_default_library",
srcs = [
"controller.go",
"cronjob_controller.go",
"doc.go",
"injection.go",
"utils.go",
......@@ -44,7 +44,7 @@ go_library(
go_test(
name = "go_default_test",
srcs = [
"controller_test.go",
"cronjob_controller_test.go",
"utils_test.go",
],
library = "go_default_library",
......
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