We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4574807 commit 3904a28Copy full SHA for 3904a28
apis/config/v1alpha1/setupconfig_types.go
@@ -122,6 +122,8 @@ type SelfManagementOptions struct {
122
EnableFeatures EnableFeaturesOptions `json:"enableFeatures"`
123
// +optional
124
DisableFeatures []string `json:"disableFeatures"`
125
+ // +optional
126
+ KubeAPIServer string `json:"kubeAPIServer,omitempty"`
127
}
128
129
type EnableFeaturesOptions map[string]FeatureSetOptions
@@ -161,6 +163,7 @@ func (opt SelfManagementOptions) ToConfig() SelfManagement {
161
163
CreateCAPICluster: opt.CreateCAPICluster,
162
164
EnableFeatures: sets.List(enableFeatures),
165
DisableFeatures: sets.List(sets.New[string](opt.DisableFeatures...)),
166
+ KubeAPIServer: opt.KubeAPIServer,
167
168
169
0 commit comments