From c329202ee8eb20a006c61838bdb92a60f81a1dab Mon Sep 17 00:00:00 2001 From: Indeed Date: Tue, 8 Jun 2021 15:23:25 -0700 Subject: [PATCH] update comments to reflect wildcard component. --- staging/src/k8s.io/controller-manager/config/types.go | 1 + staging/src/k8s.io/controller-manager/config/v1alpha1/types.go | 1 + 2 files changed, 2 insertions(+) diff --git a/staging/src/k8s.io/controller-manager/config/types.go b/staging/src/k8s.io/controller-manager/config/types.go index 1d95422d911..e8d2470eeaa 100644 --- a/staging/src/k8s.io/controller-manager/config/types.go +++ b/staging/src/k8s.io/controller-manager/config/types.go @@ -77,5 +77,6 @@ type ControllerLeaderConfiguration struct { // Component is the name of the component in which the controller should be running. // E.g. kube-controller-manager, cloud-controller-manager, etc + // Or '*' meaning the controller can be run under any component that participates in the migration Component string } diff --git a/staging/src/k8s.io/controller-manager/config/v1alpha1/types.go b/staging/src/k8s.io/controller-manager/config/v1alpha1/types.go index 84d3c1b82ff..9cd9eee9c69 100644 --- a/staging/src/k8s.io/controller-manager/config/v1alpha1/types.go +++ b/staging/src/k8s.io/controller-manager/config/v1alpha1/types.go @@ -76,5 +76,6 @@ type ControllerLeaderConfiguration struct { // Component is the name of the component in which the controller should be running. // E.g. kube-controller-manager, cloud-controller-manager, etc + // Or '*' meaning the controller can be run under any component that participates in the migration Component string `json:"component"` }