Skip to content

Commit

Permalink
remove "k8s.io/kubernetes/pkg/controller/apis/config" dependency for …
Browse files Browse the repository at this point in the history
…yurt-controller-manager (openyurtio#664)
  • Loading branch information
qclc authored Dec 8, 2021
1 parent bbe7526 commit ff99c24
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/yurt-controller-manager/app/options/generic.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ import (
"k8s.io/apimachinery/pkg/util/sets"
cliflag "k8s.io/component-base/cli/flag"
componentbaseconfig "k8s.io/component-base/config"
kubectrlmgrconfig "k8s.io/kubernetes/pkg/controller/apis/config"

"github.com/openyurtio/openyurt/pkg/controller/kubernetes/client/leaderelectionconfig"
kubectrlmgrconfig "github.com/openyurtio/openyurt/pkg/controller/kubernetes/controller/apis/config"
)

// GenericControllerManagerConfigurationOptions holds the options which are generic.
Expand Down
2 changes: 1 addition & 1 deletion cmd/yurt-controller-manager/app/options/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ import (
componentbaseconfig "k8s.io/component-base/config"
"k8s.io/klog/v2"
nodelifecycleconfig "k8s.io/kube-controller-manager/config/v1alpha1"
kubectrlmgrconfig "k8s.io/kubernetes/pkg/controller/apis/config"
utilpointer "k8s.io/utils/pointer"

yurtcontrollerconfig "github.com/openyurtio/openyurt/cmd/yurt-controller-manager/app/config"
kubectrlmgrconfig "github.com/openyurtio/openyurt/pkg/controller/kubernetes/controller/apis/config"
)

const (
Expand Down
3 changes: 2 additions & 1 deletion pkg/controller/apis/config/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ package config
import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
nodelifecycleconfig "k8s.io/kube-controller-manager/config/v1alpha1"
kubectrlmgrconfig "k8s.io/kubernetes/pkg/controller/apis/config"

kubectrlmgrconfig "github.com/openyurtio/openyurt/pkg/controller/kubernetes/controller/apis/config"
)

// YurtControllerManagerConfiguration contains elements describing yurt-controller manager.
Expand Down
49 changes: 49 additions & 0 deletions pkg/controller/kubernetes/controller/apis/config/types.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
/*
Copyright 2018 The Kubernetes Authors.
Copyright 2021 The OpenYurt Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package config

import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
componentbaseconfig "k8s.io/component-base/config"
)

// GenericControllerManagerConfiguration holds configuration for a generic controller-manager
type GenericControllerManagerConfiguration struct {
// port is the port that the controller-manager's http service runs on.
Port int32
// address is the IP address to serve on (set to 0.0.0.0 for all interfaces).
Address string
// minResyncPeriod is the resync period in reflectors; will be random between
// minResyncPeriod and 2*minResyncPeriod.
MinResyncPeriod metav1.Duration
// ClientConnection specifies the kubeconfig file and client connection
// settings for the proxy server to use when communicating with the apiserver.
ClientConnection componentbaseconfig.ClientConnectionConfiguration
// How long to wait between starting controller managers
ControllerStartInterval metav1.Duration
// leaderElection defines the configuration of leader election client.
LeaderElection componentbaseconfig.LeaderElectionConfiguration
// Controllers is the list of controllers to enable or disable
// '*' means "all enabled by default controllers"
// 'foo' means "enable 'foo'"
// '-foo' means "disable 'foo'"
// first item for a particular name wins
Controllers []string
// DebuggingConfiguration holds configuration for Debugging related features.
Debugging componentbaseconfig.DebuggingConfiguration
}

0 comments on commit ff99c24

Please sign in to comment.