katalyst-core/pkg/config/generic/generic_base.go

52 lines
1.6 KiB
Go

/*
Copyright 2022 The Katalyst 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 generic
import (
componentbaseconfig "k8s.io/component-base/config"
)
// GenericConfiguration stores all the generic configurations needed
// by core katalyst components
type GenericConfiguration struct {
DryRun bool
// for some cases, we may need to enable the ability of transformed informer
TransformedInformerForPod bool
GenericEndpoint string
GenericEndpointHandleChains []string
GenericAuthStaticUser string
GenericAuthStaticPasswd string
*QoSConfiguration
*MetricsConfiguration
// ClientConnection specifies the kubeconfig file and client connection
// settings for the proxy server to use when communicating with the apiserver.
ClientConnection componentbaseconfig.ClientConnectionConfiguration
}
// NewGenericConfiguration creates a new generic configuration.
func NewGenericConfiguration() *GenericConfiguration {
return &GenericConfiguration{
DryRun: false,
QoSConfiguration: NewQoSConfiguration(),
MetricsConfiguration: NewMetricsConfiguration(),
}
}