Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions apis/cluster/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,12 @@ type ProviderOptions struct {
}

type ComponentOptions struct {
FluxCD bool `json:"fluxCD,omitempty"`
FeatureSets []FeatureSet `json:"featureSets,omitempty"`
AllFeatures bool `json:"allFeatures,omitempty"`
ClusterProfile string `json:"clusterProfile,omitempty"`
SpokeComponents bool `json:"spokeComponent,omitempty"`
FluxCD bool `json:"fluxCD,omitempty"`
FeatureSets []FeatureSet `json:"featureSets,omitempty"`
AllFeatures bool `json:"allFeatures,omitempty"`
ClusterProfile string `json:"clusterProfile,omitempty"`
MonitoringClusterName string `json:"monitoringClusterName,omitempty"`
SpokeComponents bool `json:"spokeComponent,omitempty"`
}

type FeatureSet struct {
Expand Down
2 changes: 2 additions & 0 deletions apis/config/v1alpha1/setupconfig_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ type AceSetupInlineConfig struct {
Cluster *CAPIClusterConfig `json:"cluster,omitempty"`
// +optional
Subscription *MarketplaceSubscriptionInfo `json:"subscription,omitempty"`
// +optional
SyncPersesAccounts bool `json:"syncPersesAccounts,omitempty"`
}

type AceSetupInlineOptions struct {
Expand Down
Loading