Files
open-cluster-management/manifests/config.go
2025-11-19 02:39:54 +00:00

54 lines
2.0 KiB
Go

package manifests
import operatorapiv1 "open-cluster-management.io/api/operator/v1"
type HubConfig struct {
ClusterManagerName string
ClusterManagerNamespace string
OperatorNamespace 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
WorkControllerEnabled bool
ClusterProfileEnabled bool
AgentImage string
CloudEventsDriverEnabled bool
ClusterImporterEnabled bool
WorkDriver string
AutoApproveUsers string
ImagePullSecret string
// ResourceRequirementResourceType is the resource requirement resource type for the cluster manager managed containers.
ResourceRequirementResourceType operatorapiv1.ResourceQosClass
// ResourceRequirements is the resource requirements for the cluster manager managed containers.
// The type has to be []byte to use "indent" template function.
ResourceRequirements []byte
ManagedClusterIdentityCreatorRole string
HubClusterArn string
EnabledRegistrationDrivers string
AutoApprovedCSRUsers string
AutoApprovedARNPatterns string
AwsResourceTags string
Labels map[string]string
LabelsString string
GRPCAuthEnabled bool
GRPCServerImage string
GRPCAutoApprovedUsers string
GRPCEndpointType string
}
type Webhook struct {
IsIPFormat bool
Port int32
Address string
}