Files
open-cluster-management/manifests/config.go
Jian Qiu d14214ee0b Remove addon enable field (#338)
Use feature gate instead

Signed-off-by: Jian Qiu <jqiu@redhat.com>
2023-03-30 23:47:02 -04:00

26 lines
710 B
Go

package manifests
type HubConfig struct {
ClusterManagerName string
ClusterManagerNamespace string
RegistrationImage string
RegistrationAPIServiceCABundle string
WorkImage string
WorkAPIServiceCABundle string
PlacementImage string
Replica int32
HostedMode bool
RegistrationWebhook Webhook
WorkWebhook Webhook
RegistrationFeatureGates []string
WorkFeatureGates []string
AddOnManagerImage string
AddOnManagerEnabled bool
}
type Webhook struct {
IsIPFormat bool
Port int32
Address string
}