mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-23 17:43:25 +00:00
26 lines
710 B
Go
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
|
|
}
|