v1alpha1

package
v0.0.0-...-0f541f5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 31, 2022 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Overview

Package v1alpha1 is the v1alpha1 version of the API.

Copyright 2022 The Firefly Authors.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Index

Constants

This section is empty.

Variables

View Source
var (
	// SchemeBuilder initializes a scheme builder
	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
	// AddToScheme is a global function that registers this API group & version to a scheme
	AddToScheme = SchemeBuilder.AddToScheme
)
View Source
var KubeControllersEnabledByDefaults = sets.NewString(
	"namespace",
	"garbagecollector",
	"serviceaccount-token",
	"ttl-after-finished",
	"bootstrapsigner",
	"csrapproving",
	"csrcleaner",
	"csrsigning",
)
View Source
var SchemeGroupVersion = schema.GroupVersion{Group: install.GroupName, Version: "v1alpha1"}

SchemeGroupVersion is group version used to register these objects

Functions

func Kind

func Kind(kind string) schema.GroupKind

Kind takes an unqualified kind and returns back a Group qualified GroupKind

func Resource

func Resource(resource string) schema.GroupResource

Resource takes an unqualified resource and returns a Group qualified GroupResource

func SetDefaults_Clusterpedia

func SetDefaults_Clusterpedia(obj *Clusterpedia)

func SetDefaults_Karmada

func SetDefaults_Karmada(obj *Karmada)

Types

type APIServerComponent

type APIServerComponent struct {
	// KubeAPIServerComponent holds settings to kube-apiserver component of the kubernetes.
	// Karmada uses it as it's own apiserver in order to provide Kubernetes-native APIs.
	KubeAPIServer KubeAPIServerComponent `json:"kubeAPIServer,omitempty"`

	// KarmadaAggregratedAPIServerComponent holds settings to karmada-aggregated-apiserver component of the karmada.
	KarmadaAggregratedAPIServer KarmadaAggregratedAPIServerComponent `json:"karmadaAggregratedAPIServer,omitempty"`
}

APIServerComponent holds settings necessary for API server deployments in the karmada

func (*APIServerComponent) DeepCopy

func (in *APIServerComponent) DeepCopy() *APIServerComponent

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new APIServerComponent.

func (*APIServerComponent) DeepCopyInto

func (in *APIServerComponent) DeepCopyInto(out *APIServerComponent)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ClusterSynchroManagerComponent

type ClusterSynchroManagerComponent struct {
	// ImageMeta allows to customize the image used for the clustersynchro-manager component
	ImageMeta `json:",inline"`

	// Number of desired pods. This is a pointer to distinguish between explicit
	// zero and not specified. Defaults to 1.
	// +optional
	Replicas *int32 `json:"replicas,omitempty"`

	// ExtraArgs is an extra set of flags to pass to the clustersynchro-manager component or
	// override. A key in this map is the flag name as it appears on the command line except
	// without leading dash(es).
	//
	// Note: This is a temporary solution to allow for the configuration of the
	// clustersynchro-manager component. In the future, we will provide a more structured way
	// to configure the component. Once that is done, this field will be discouraged to be used.
	// Incorrect settings on this feild maybe lead to the corresponding component in an unhealthy
	// state. Before you do it, please confirm that you understand the risks of this configuration.
	//
	// For supported flags, please see
	// https://github.com/clusterpedia-io/clusterpedia/blob/main/cmd/clustersynchro-manager/app/options/options.go
	// for details.
	// +optional
	ExtraArgs map[string]string `json:"extraArgs,omitempty"`

	// Compute Resources required by this component.
	// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
	// +optional
	Resources corev1.ResourceRequirements `json:"resources,omitempty"`

	// FeatureGates enabled by the user.
	// More info: https://github.com/clusterpedia-io/clusterpedia/blob/main/pkg/synchromanager/features/features.go
	// +optional
	FeatureGates map[string]bool `json:"featureGates,omitempty"`
}

ClusterSynchroManagerComponent holds settings to clustersynchro-manager component of the karmada.

func (*ClusterSynchroManagerComponent) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSynchroManagerComponent.

func (*ClusterSynchroManagerComponent) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type Clusterpedia

type Clusterpedia struct {
	metav1.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	metav1.ObjectMeta `json:"metadata,omitempty"`

	// Specification of the desired behavior of the Clusterpedia.
	// +optional
	Spec ClusterpediaSpec `json:"spec"`
	// Most recently observed status of the Clusterpedia.
	// +optional
	Status ClusterpediaStatus `json:"status"`
}

Clusterpedia is a specification for a Clusterpedia resource

func (*Clusterpedia) DeepCopy

func (in *Clusterpedia) DeepCopy() *Clusterpedia

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Clusterpedia.

func (*Clusterpedia) DeepCopyInto

func (in *Clusterpedia) DeepCopyInto(out *Clusterpedia)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Clusterpedia) DeepCopyObject

func (in *Clusterpedia) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type ClusterpediaAPIServerComponent

type ClusterpediaAPIServerComponent struct {
	// ImageMeta allows to customize the image used for the clusterpedia-apiserver component
	ImageMeta `json:",inline"`

	// Number of desired pods. This is a pointer to distinguish between explicit
	// zero and not specified. Defaults to 1.
	// +optional
	Replicas *int32 `json:"replicas,omitempty"`

	// ExtraArgs is an extra set of flags to pass to the clusterpedia-apiserver component or
	// override. A key in this map is the flag name as it appears on the command line except
	// without leading dash(es).
	//
	// Note: This is a temporary solution to allow for the configuration of the
	// clusterpedia-apiserver component. In the future, we will provide a more structured way
	// to configure the component. Once that is done, this field will be discouraged to be used.
	// Incorrect settings on this feild maybe lead to the corresponding component in an unhealthy
	// state. Before you do it, please confirm that you understand the risks of this configuration.
	//
	// For supported flags, please see
	// https://github.com/clusterpedia-io/clusterpedia/blob/main/cmd/apiserver/app/options/options.go
	// for details.
	// +optional
	ExtraArgs map[string]string `json:"extraArgs,omitempty"`

	// Compute Resources required by this component.
	// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
	// +optional
	Resources corev1.ResourceRequirements `json:"resources,omitempty"`

	// FeatureGates enabled by the user.
	// +optional
	FeatureGates map[string]bool `json:"featureGates,omitempty"`
}

ClusterpediaAPIServerComponent holds settings to clusterpedia-apiserver component of the clusterpeida.

func (*ClusterpediaAPIServerComponent) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterpediaAPIServerComponent.

func (*ClusterpediaAPIServerComponent) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ClusterpediaControllerManagerComponent

type ClusterpediaControllerManagerComponent struct {
	// ImageMeta allows to customize the image used for the clusterpedia-controller-manager component
	ImageMeta `json:",inline"`

	// Number of desired pods. This is a pointer to distinguish between explicit
	// zero and not specified. Defaults to 1.
	// +optional
	Replicas *int32 `json:"replicas,omitempty"`

	// ExtraArgs is an extra set of flags to pass to the clusterpedia-controller-manager component or
	// override. A key in this map is the flag name as it appears on the command line except
	// without leading dash(es).
	//
	// Note: This is a temporary solution to allow for the configuration of the
	// clusterpedia-controller-manager component. In the future, we will provide a more structured way
	// to configure the component. Once that is done, this field will be discouraged to be used.
	// Incorrect settings on this feild maybe lead to the corresponding component in an unhealthy
	// state. Before you do it, please confirm that you understand the risks of this configuration.
	//
	// For supported flags, please see
	// https://github.com/clusterpedia-io/clusterpedia/blob/main/cmd/controller-manager/app/options/options.go
	// for details.
	// +optional
	ExtraArgs map[string]string `json:"extraArgs,omitempty"`

	// Compute Resources required by this component.
	// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
	// +optional
	Resources corev1.ResourceRequirements `json:"resources,omitempty"`

	// FeatureGates enabled by the user.
	// +optional
	FeatureGates map[string]bool `json:"featureGates,omitempty"`
}

ClusterpediaControllerManagerComponent holds settings to clusterpedia-controller-manager component of the karmada.

func (*ClusterpediaControllerManagerComponent) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterpediaControllerManagerComponent.

func (*ClusterpediaControllerManagerComponent) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ClusterpediaControlplaneProvider

type ClusterpediaControlplaneProvider struct {
	// SyncAllCustomResources indicates whether to sync all the custom resources of member clusters to clusterpedia.
	// +optional
	SyncAllCustomResources bool `json:"syncAllCustomResources,omitempty"`

	// SyncResources represents which resources will be synced to clusterpedia from member clusters.
	// If empty, firefly won't auto-create clusterimportpolicy and nothing will be synced into clusterpedia by default.
	// +optional
	SyncResources []clusterapi.ClusterGroupResources `json:"syncResources,omitempty"`

	// Karmada represents the karmada control plane.
	// +optional
	Karmada *ClusterpediaControlplaneProviderKarmada `json:"karmada,omitempty"`
}

ControlplaneProvider represents where the clusterpedia crds will be deployed on.

func (*ClusterpediaControlplaneProvider) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterpediaControlplaneProvider.

func (*ClusterpediaControlplaneProvider) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ClusterpediaControlplaneProviderKarmada

type ClusterpediaControlplaneProviderKarmada struct {
	corev1.LocalObjectReference `json:",inline"`
}

KarmadaControlplaneProviderKarmada represents the karmada controlplane provider

func (*ClusterpediaControlplaneProviderKarmada) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterpediaControlplaneProviderKarmada.

func (*ClusterpediaControlplaneProviderKarmada) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ClusterpediaList

type ClusterpediaList struct {
	metav1.TypeMeta `json:",inline"`
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	metav1.ListMeta `json:"metadata"`

	Items []Clusterpedia `json:"items"`
}

ClusterpediaList is a list of Clusterpedia resources

func (*ClusterpediaList) DeepCopy

func (in *ClusterpediaList) DeepCopy() *ClusterpediaList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterpediaList.

func (*ClusterpediaList) DeepCopyInto

func (in *ClusterpediaList) DeepCopyInto(out *ClusterpediaList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ClusterpediaList) DeepCopyObject

func (in *ClusterpediaList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type ClusterpediaSpec

type ClusterpediaSpec struct {
	// ControlplaneProvider represents where the clusterpedia crds will be deployed on.
	// If unset, means that the clusterpedia and its crds will be installed on the host
	// cluster.
	// +optional
	ControlplaneProvider *ClusterpediaControlplaneProvider `json:"controlplaneProvider,omitempty"`

	// Version is the target version of the clusterpedia component.
	// If empty, `latest` will be used by default.
	// +optional
	Version string `json:"version,omitempty"`

	// Storage contains extra settings for the clusterpedia-storage component
	// If empty, firefly will choose the internal postgres as default value.
	// +optional
	Storage ClusterpediaStorageComponent `json:"storage,omitempty"`

	// APIServer contains extra settings for the clusterpedia-apiserver component
	// +optional
	APIServer ClusterpediaAPIServerComponent `json:"apiServer,omitempty"`

	// ControllerManager contains extra settings for the clusterpedia-controller-manager component
	ControllerManager ClusterpediaControllerManagerComponent `json:"controllerManager,omitempty"`

	// ClusterSynchroManager contains extra settings for the clustersynchro-manager component
	ClusterpediaSynchroManager ClusterSynchroManagerComponent `json:"clusterSynchroManager,omitempty"`

	// ImageRepository sets the container registry to pull images from.
	// If empty, `ghcr.io/clusterpedia-io/clusterpedia` will be used by default.
	// +optional
	ImageRepository string `json:"imageRepository,omitempty"`

	// FeatureGates enabled by the user.
	// If you don't know that a feature gate should be applied to which components, you can
	// use this field to enable or disable the feature gate for all the components of the clusterpedia instance.
	// It can be overridden by the component-specific feature gate settings.
	// Note: the clusterpedia community doesn't support this field now. Please use component-specific feature gate settings.
	// +optional
	FeatureGates map[string]bool `json:"featureGates,omitempty"`
}

ClusterpediaSpec is the spec for a Clusterpedia resource

func (*ClusterpediaSpec) DeepCopy

func (in *ClusterpediaSpec) DeepCopy() *ClusterpediaSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterpediaSpec.

func (*ClusterpediaSpec) DeepCopyInto

func (in *ClusterpediaSpec) DeepCopyInto(out *ClusterpediaSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ClusterpediaStatus

type ClusterpediaStatus struct {
	// observedGeneration is the most recent generation observed for this Clusterpedia. It corresponds to the
	// Clusterpedia's generation, which is updated on mutation by the API Server.
	// +optional
	ObservedGeneration int64 `json:"observedGeneration,omitempty"`

	// Represents the latest available observations of a clusterpedia's current state.
	// +patchMergeKey=type
	// +patchStrategy=merge
	Conditions []metav1.Condition `json:"conditions,omitempty"`
}

ClusterpediaStatus is the status for a Clusterpedia resource

func (*ClusterpediaStatus) DeepCopy

func (in *ClusterpediaStatus) DeepCopy() *ClusterpediaStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterpediaStatus.

func (*ClusterpediaStatus) DeepCopyInto

func (in *ClusterpediaStatus) DeepCopyInto(out *ClusterpediaStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ClusterpediaStorageComponent

type ClusterpediaStorageComponent struct {
	// Postgres holds settings to clusterpedia-storage-postgres component of the clusterpeida.
	Postgres *Postgres `json:"postgres,omitempty"`
	//MySQL holds settings to clusterpedia-storage-mysql component of the clusterpeida.
	MySQL *MySQL `json:"mysql,omitempty"`
}

ClusterpediaStorageComponent holds settings to clusterpedia-storage component of the clusterpeida.

func (*ClusterpediaStorageComponent) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterpediaStorageComponent.

func (*ClusterpediaStorageComponent) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ControllerManagerComponent

type ControllerManagerComponent struct {
	// KubeControllerManager holds settings to kube-controller-manager component of the karmada.
	KubeControllerManager KubeControllerManagerComponent `json:"kubeControllerManager,omitempty"`

	// KarmadaControllerManager holds settings to karmada-controller-manager component of the karmada.
	KarmadaControllerManager KarmadaControllerManagerComponent `json:"karmadaControllerManager,omitempty"`

	// FireflyKarmadaManager holds settings to firefly-karmada-manager component of the karmada.
	FireflyKarmadaManager FireflyKarmadaManagerComponent `json:"fireflyKarmadaManager,omitempty"`
}

ControllerManagerComponent holds settings to controller manager components of the karmada.

func (*ControllerManagerComponent) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerManagerComponent.

func (*ControllerManagerComponent) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type Etcd

type Etcd struct {
	// Local provides configuration knobs for configuring the built-in etcd instance
	// Local and External are mutually exclusive
	// +optional
	Local *LocalEtcd `json:"local,omitempty"`

	// External describes how to connect to an external etcd cluster
	// Local and External are mutually exclusive
	// +optional
	External *ExternalEtcd `json:"external,omitempty"`
}

Etcd contains elements describing Etcd configuration.

func (*Etcd) DeepCopy

func (in *Etcd) DeepCopy() *Etcd

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Etcd.

func (*Etcd) DeepCopyInto

func (in *Etcd) DeepCopyInto(out *Etcd)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ExternalEtcd

type ExternalEtcd struct {
	// Endpoints of etcd members. Required for ExternalEtcd.
	Endpoints []string `json:"endpoints"`

	// CAData is an SSL Certificate Authority file used to secure etcd communication.
	// Required if using a TLS connection.
	CAData []byte `json:"caData"`

	// CertData is an SSL certification file used to secure etcd communication.
	// Required if using a TLS connection.
	CertData []byte `json:"certData"`

	// KeyData is an SSL key file used to secure etcd communication.
	// Required if using a TLS connection.
	KeyData []byte `json:"keyData"`
}

ExternalEtcd describes an external etcd cluster. Firefly has no knowledge of where certificate files live and they must be supplied.

func (*ExternalEtcd) DeepCopy

func (in *ExternalEtcd) DeepCopy() *ExternalEtcd

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalEtcd.

func (*ExternalEtcd) DeepCopyInto

func (in *ExternalEtcd) DeepCopyInto(out *ExternalEtcd)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type FireflyKarmadaManagerComponent

type FireflyKarmadaManagerComponent struct {
	// ImageMeta allows to customize the image used for the firefly-karmada-manager component
	ImageMeta `json:",inline"`

	// Number of desired pods. This is a pointer to distinguish between explicit
	// zero and not specified. Defaults to 1.
	// +optional
	Replicas *int32 `json:"replicas,omitempty"`

	// A list of controllers to enable. '*' enables all on-by-default controllers,
	// 'foo' enables the controller named 'foo', '-foo' disables the controller named
	// 'foo'.
	//
	// All controllers: estimator, node
	// Disabled-by-default controllers:  (default [*])
	//
	// +optional
	Controllers []string `json:"controllers,omitempty"`

	// Compute Resources required by this component.
	// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
	// +optional
	Resources corev1.ResourceRequirements `json:"resources,omitempty"`
}

FireflyKarmadaManagerComponent holds settings to the firefly-karmada-manager component of the karmada.

func (*FireflyKarmadaManagerComponent) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FireflyKarmadaManagerComponent.

func (*FireflyKarmadaManagerComponent) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ImageMeta

type ImageMeta struct {
	// ImageRepository sets the container registry to pull images from.
	// if not set, the ImageRepository defined in Spec will be used instead.
	// +optional
	ImageRepository string `json:"imageRepository,omitempty"`

	// ImageTag allows to specify a tag for the image.
	// In case this value is set, firefly does not change automatically the version
	// of the above components during upgrades.
	// +optional
	ImageTag string `json:"imageTag,omitempty"`

	// ImageName allows to specify a name for the image.
	// +optional
	ImageName string `json:"imageName,omitempty"`
}

ImageMeta allows to customize the image used for components.

func (*ImageMeta) DeepCopy

func (in *ImageMeta) DeepCopy() *ImageMeta

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageMeta.

func (*ImageMeta) DeepCopyInto

func (in *ImageMeta) DeepCopyInto(out *ImageMeta)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type Karmada

type Karmada struct {
	metav1.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	metav1.ObjectMeta `json:"metadata,omitempty"`

	// Specification of the desired behavior of the Karmada.
	// +optional
	Spec KarmadaSpec `json:"spec"`
	// Most recently observed status of the Karmada.
	// +optional
	Status KarmadaStatus `json:"status"`
}

Karmada is a specification for a Karmada resource

func (*Karmada) DeepCopy

func (in *Karmada) DeepCopy() *Karmada

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Karmada.

func (*Karmada) DeepCopyInto

func (in *Karmada) DeepCopyInto(out *Karmada)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Karmada) DeepCopyObject

func (in *Karmada) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type KarmadaAggregratedAPIServerComponent

type KarmadaAggregratedAPIServerComponent struct {
	// ImageMeta allows to customize the image used for the karmada-aggregated-apiserver component
	ImageMeta `json:",inline"`

	// Number of desired pods. This is a pointer to distinguish between explicit
	// zero and not specified. Defaults to 1.
	// +optional
	Replicas *int32 `json:"replicas,omitempty"`

	// ExtraArgs is an extra set of flags to pass to the karmada-aggregated-apiserver component or
	// override. A key in this map is the flag name as it appears on the command line except
	// without leading dash(es).
	//
	// Note: This is a temporary solution to allow for the configuration of the
	// karmada-aggregated-apiserver component. In the future, we will provide a more structured way
	// to configure the component. Once that is done, this field will be discouraged to be used.
	// Incorrect settings on this feild maybe lead to the corresponding component in an unhealthy
	// state. Before you do it, please confirm that you understand the risks of this configuration.
	//
	// For supported flags, please see
	// https://github.com/karmada-io/karmada/blob/master/cmd/aggregated-apiserver/app/options/options.go
	// for details.
	// +optional
	ExtraArgs map[string]string `json:"extraArgs,omitempty"`

	// Compute Resources required by this component.
	// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
	// +optional
	Resources corev1.ResourceRequirements `json:"resources,omitempty"`
}

KarmadaAggregratedAPIServerComponent holds settings to karmada-aggregated-apiserver component of the karmada.

func (*KarmadaAggregratedAPIServerComponent) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KarmadaAggregratedAPIServerComponent.

func (*KarmadaAggregratedAPIServerComponent) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type KarmadaControllerManagerComponent

type KarmadaControllerManagerComponent struct {
	// ImageMeta allows to customize the image used for the karmada-controller-manager component
	ImageMeta `json:",inline"`

	// Number of desired pods. This is a pointer to distinguish between explicit
	// zero and not specified. Defaults to 1.
	// +optional
	Replicas *int32 `json:"replicas,omitempty"`

	// A list of controllers to enable. '*' enables all on-by-default controllers,
	// 'foo' enables the controller named 'foo', '-foo' disables the controller named
	// 'foo'.
	//
	// All controllers: binding, cluster, clusterStatus, endpointSlice, execution,
	// federatedResourceQuotaStatus, federatedResourceQuotaSync, hpa, namespace,
	// serviceExport, serviceImport, unifiedAuth, workStatus.
	// Disabled-by-default controllers: hpa (default [*])
	// Actual Supported controllers depend on the version of Karmada. See
	// https://karmada.io/docs/administrator/configuration/configure-controllers#configure-karmada-controllers
	// for details.
	//
	// +optional
	Controllers []string `json:"controllers,omitempty"`

	// ExtraArgs is an extra set of flags to pass to the karmada-controller-manager component or
	// override. A key in this map is the flag name as it appears on the command line except
	// without leading dash(es).
	//
	// Note: This is a temporary solution to allow for the configuration of the
	// karmada-controller-manager component. In the future, we will provide a more structured way
	// to configure the component. Once that is done, this field will be discouraged to be used.
	// Incorrect settings on this feild maybe lead to the corresponding component in an unhealthy
	// state. Before you do it, please confirm that you understand the risks of this configuration.
	//
	// For supported flags, please see
	// https://github.com/karmada-io/karmada/blob/master/cmd/controller-manager/app/options/options.go
	// for details.
	// +optional
	ExtraArgs map[string]string `json:"extraArgs,omitempty"`

	// Compute Resources required by this component.
	// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
	// +optional
	Resources corev1.ResourceRequirements `json:"resources,omitempty"`
}

KarmadaControllerManagerComponent holds settings to the karmada-controller-manager component of the karmada.

func (*KarmadaControllerManagerComponent) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KarmadaControllerManagerComponent.

func (*KarmadaControllerManagerComponent) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type KarmadaDeschedulerComponent

type KarmadaDeschedulerComponent struct {
	// Enable indicates whether the karmada-descheduler conponent should be deployed.
	// This is a pointer to distinguish between explicit zero and not specified.
	// Defaults to false.
	// +optional
	Enable *bool `json:"enable,omitempty"`

	// ImageMeta allows to customize the image used for the karmada-descheduler component
	ImageMeta `json:",inline"`

	// Number of desired pods. This is a pointer to distinguish between explicit
	// zero and not specified. Defaults to 1.
	// +optional
	Replicas *int32 `json:"replicas,omitempty"`

	// ExtraArgs is an extra set of flags to pass to the karmada-descheduler component or override.
	// A key in this map is the flag name as it appears on the command line except without
	// leading dash(es).
	//
	// Note: This is a temporary solution to allow for the configuration of the karmada-descheduler
	// component. In the future, we will provide a more structured way to configure the component.
	// Once that is done, this field will be discouraged to be used.
	// Incorrect settings on this feild maybe lead to the corresponding component in an unhealthy
	// state. Before you do it, please confirm that you understand the risks of this configuration.
	//
	// For supported flags, please see
	// https://github.com/karmada-io/karmada/blob/master/cmd/descheduler/app/options/options.go
	// for details.
	// +optional
	ExtraArgs map[string]string `json:"extraArgs,omitempty"`

	// Compute Resources required by this component.
	// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
	// +optional
	Resources corev1.ResourceRequirements `json:"resources,omitempty"`
}

KarmadaDeschedulerComponent holds settings to karmada-descheduler conponent of the karmada.

func (*KarmadaDeschedulerComponent) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KarmadaDeschedulerComponent.

func (*KarmadaDeschedulerComponent) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type KarmadaList

type KarmadaList struct {
	metav1.TypeMeta `json:",inline"`
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	metav1.ListMeta `json:"metadata"`

	Items []Karmada `json:"items"`
}

KarmadaList is a list of Karmada resources

func (*KarmadaList) DeepCopy

func (in *KarmadaList) DeepCopy() *KarmadaList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KarmadaList.

func (*KarmadaList) DeepCopyInto

func (in *KarmadaList) DeepCopyInto(out *KarmadaList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*KarmadaList) DeepCopyObject

func (in *KarmadaList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type KarmadaSchedulerComponent

type KarmadaSchedulerComponent struct {
	// ImageMeta allows to customize the image used for the karmada-scheduler component
	ImageMeta `json:",inline"`

	// Number of desired pods. This is a pointer to distinguish between explicit
	// zero and not specified. Defaults to 1.
	// +optional
	Replicas *int32 `json:"replicas,omitempty"`

	// ExtraArgs is an extra set of flags to pass to the karmada-scheduler component or override.
	// A key in this map is the flag name as it appears on the command line except without
	// leading dash(es).
	//
	// Note: This is a temporary solution to allow for the configuration of the karmada-scheduler
	// component. In the future, we will provide a more structured way to configure the component.
	// Once that is done, this field will be discouraged to be used.
	// Incorrect settings on this feild maybe lead to the corresponding component in an unhealthy
	// state. Before you do it, please confirm that you understand the risks of this configuration.
	//
	// For supported flags, please see
	// https://github.com/karmada-io/karmada/blob/master/cmd/scheduler/app/options/options.go
	// for details.
	// +optional
	ExtraArgs map[string]string `json:"extraArgs,omitempty"`

	// Compute Resources required by this component.
	// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
	// +optional
	Resources corev1.ResourceRequirements `json:"resources,omitempty"`
}

KarmadaSchedulerComponent holds settings to karmada-scheduler conponent of the karmada.

func (*KarmadaSchedulerComponent) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KarmadaSchedulerComponent.

func (*KarmadaSchedulerComponent) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type KarmadaSchedulerEstimatorComponent

type KarmadaSchedulerEstimatorComponent struct {
	// ImageMeta allows to customize the image used for the karmada-scheduler-estimator component
	ImageMeta `json:",inline"`

	// Number of desired pods. This is a pointer to distinguish between explicit
	// zero and not specified. Defaults to 1.
	// +optional
	Replicas *int32 `json:"replicas,omitempty"`

	// ExtraArgs is an extra set of flags to pass to the karmada-scheduler-estimator component or override.
	// A key in this map is the flag name as it appears on the command line except without
	// leading dash(es).
	//
	// Note: This is a temporary solution to allow for the configuration of the karmada-scheduler-estimator
	// component. In the future, we will provide a more structured way to configure the component.
	// Once that is done, this field will be discouraged to be used.
	// Incorrect settings on this feild maybe lead to the corresponding component in an unhealthy
	// state. Before you do it, please confirm that you understand the risks of this configuration.
	//
	// For supported flags, please see
	// https://github.com/karmada-io/karmada/blob/master/cmd/scheduler-estimator/app/options/options.go
	// for details.
	// +optional
	ExtraArgs map[string]string `json:"extraArgs,omitempty"`

	// Compute Resources required by this component.
	// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
	// +optional
	Resources corev1.ResourceRequirements `json:"resources,omitempty"`
}

KarmadaSchedulerEstimatorComponent holds settings to karmada-scheduler-estimator conponent of the karmada.

func (*KarmadaSchedulerEstimatorComponent) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KarmadaSchedulerEstimatorComponent.

func (*KarmadaSchedulerEstimatorComponent) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type KarmadaSpec

type KarmadaSpec struct {
	// Etcd holds configuration for etcd.
	// +optional
	Etcd Etcd `json:"etcd,omitempty"`

	// Networking holds configuration for the networking topology of the cluster.
	// +optional
	Networking Networking `json:"networking,omitempty"`

	// KubernetesVersion is the target version of the kube-apiserver component.
	// +optional
	KubernetesVersion string `json:"kubernetesVersion,omitempty"`

	// KarmadaVersion is the target version of the karmada.
	// +optional
	KarmadaVersion string `json:"karmadaVersion,omitempty"`

	// ControlPlaneEndpoint sets a stable IP address or DNS name for the control plane; it
	// can be a valid IP address or a RFC-1123 DNS subdomain, both with optional TCP port.
	// In case the ControlPlaneEndpoint is not specified, the AdvertiseAddress + BindPort
	// are used; in case the ControlPlaneEndpoint is specified but without a TCP port,
	// the BindPort is used.
	// Possible usages are:
	// e.g. In a cluster with more than one control plane instances, this field should be
	// assigned the address of the external load balancer in front of the
	// control plane instances.
	// e.g.  in environments with enforced node recycling, the ControlPlaneEndpoint
	// could be used for assigning a stable DNS to the control plane.
	// +optional
	ControlPlaneEndpoint string `json:"controlPlaneEndpoint,omitempty"`

	// APIServer contains extra settings for the API server control plane component
	// +optional
	APIServer APIServerComponent `json:"apiServer,omitempty"`

	// Webhook contains extra settings for the webhook component
	// +optional
	Webhook WebhookComponent `json:"webhook,omitempty"`

	// ControllerManager contains extra settings for the controller manager control plane component
	// +optional
	ControllerManager ControllerManagerComponent `json:"controllerManager,omitempty"`

	// Scheduler contains extra settings for the scheduler control plane component
	// +optional
	Scheduler SchedulerComponent `json:"scheduler,omitempty"`

	// ImageRepository sets the container registry to pull images from.
	// If empty, `swr.ap-southeast-1.myhuaweicloud.com/karmada` will be used by default.
	// +optional
	ImageRepository string `json:"imageRepository,omitempty"`

	// KubeImageRepository sets the container registry to pull kubernetes images from.
	// If empty, `registry.k8s.io` will be used by default.
	// field.
	// +optional
	KubeImageRepository string `json:"kubeImageRepository,omitempty"`

	// FireflyImageRepository sets the container registry to pull firelfy's images from.
	// If empty, `ghcr.io/firefly-io` will be used by default.
	// field.
	// +optional
	FireflyImageRepository string `json:"fireflyImageRepository,omitempty"`

	// FeatureGates enabled by the user.
	// If you don't know that a feature gate should be applied to which components, you can
	// use this field to enable or disable the feature gate for all the components of the karmada instance.
	// - Failover: https://karmada.io/docs/userguide/failover/#failover
	// - GracefulEviction: https://karmada.io/docs/userguide/failover/#graceful-eviction-feature
	// - PropagateDeps: https://karmada.io/docs/userguide/scheduling/propagate-dependencies
	// - CustomizedClusterResourceModeling: https://karmada.io/docs/userguide/scheduling/cluster-resources#start-to-use-cluster-resource-models
	// More info: https://github.com/karmada-io/karmada/blob/master/pkg/features/features.go
	// +optional
	FeatureGates map[string]bool `json:"featureGates,omitempty"`
}

KarmadaSpec is the spec for a Karmada resource

func (*KarmadaSpec) DeepCopy

func (in *KarmadaSpec) DeepCopy() *KarmadaSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KarmadaSpec.

func (*KarmadaSpec) DeepCopyInto

func (in *KarmadaSpec) DeepCopyInto(out *KarmadaSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type KarmadaStatus

type KarmadaStatus struct {
	// observedGeneration is the most recent generation observed for this Karmada. It corresponds to the
	// Karmada's generation, which is updated on mutation by the API Server.
	// +optional
	ObservedGeneration int64 `json:"observedGeneration,omitempty"`

	// Represents the latest available observations of a karmada's current state.
	// +patchMergeKey=type
	// +patchStrategy=merge
	Conditions []metav1.Condition `json:"conditions,omitempty"`
}

KarmadaStatus is the status for a Karmada resource

func (*KarmadaStatus) DeepCopy

func (in *KarmadaStatus) DeepCopy() *KarmadaStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KarmadaStatus.

func (*KarmadaStatus) DeepCopyInto

func (in *KarmadaStatus) DeepCopyInto(out *KarmadaStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type KarmadaWebhookComponent

type KarmadaWebhookComponent struct {
	// ImageMeta allows to customize the image used for the karmada-webhook component component
	ImageMeta `json:",inline"`

	// Number of desired pods. This is a pointer to distinguish between explicit
	// zero and not specified. Defaults to 1.
	// +optional
	Replicas *int32 `json:"replicas,omitempty"`

	// ExtraArgs is an extra set of flags to pass to the karmada-webhook component or
	// override. A key in this map is the flag name as it appears on the command line except
	// without leading dash(es).
	//
	// Note: This is a temporary solution to allow for the configuration of the
	// karmada-webhook component. In the future, we will provide a more structured way
	// to configure the component. Once that is done, this field will be discouraged to be used.
	// Incorrect settings on this feild maybe lead to the corresponding component in an unhealthy
	// state. Before you do it, please confirm that you understand the risks of this configuration.
	//
	// For supported flags, please see
	// https://github.com/karmada-io/karmada/blob/master/cmd/webhook/app/options/options.go
	// for details.
	// +optional
	ExtraArgs map[string]string `json:"extraArgs,omitempty"`

	// Compute Resources required by this component.
	// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
	// +optional
	Resources corev1.ResourceRequirements `json:"resources,omitempty"`
}

KarmadaWebhookComponent holds settings to karmada-webhook component of the karmada.

func (*KarmadaWebhookComponent) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KarmadaWebhookComponent.

func (*KarmadaWebhookComponent) DeepCopyInto

func (in *KarmadaWebhookComponent) DeepCopyInto(out *KarmadaWebhookComponent)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type KubeAPIServerComponent

type KubeAPIServerComponent struct {
	// ImageMeta allows to customize the image used for the kube-apiserver component
	ImageMeta `json:",inline"`

	// Number of desired pods. This is a pointer to distinguish between explicit
	// zero and not specified. Defaults to 1.
	// +optional
	Replicas *int32 `json:"replicas,omitempty"`

	// ExtraArgs is an extra set of flags to pass to the kube-apiserver component or
	// override. A key in this map is the flag name as it appears on the command line except
	// without leading dash(es).
	//
	// Note: This is a temporary solution to allow for the configuration of the
	// kube-apiserver component. In the future, we will provide a more structured way
	// to configure the component. Once that is done, this field will be discouraged to be used.
	// Incorrect settings on this feild maybe lead to the corresponding component in an unhealthy
	// state. Before you do it, please confirm that you understand the risks of this configuration.
	//
	// For supported flags, please see
	// https://kubernetes.io/docs/reference/command-line-tools-reference/kube-apiserver/
	// for details.
	// +optional
	ExtraArgs map[string]string `json:"extraArgs,omitempty"`

	// CertSANs sets extra Subject Alternative Names for the API Server signing cert.
	// +optional
	CertSANs []string `json:"certSANs,omitempty"`

	// Compute Resources required by this component.
	// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
	// +optional
	Resources corev1.ResourceRequirements `json:"resources,omitempty"`

	// FeatureGates enabled by the user.
	// More info: https://kubernetes.io/docs/reference/command-line-tools-reference/kube-apiserver/
	// +optional
	FeatureGates map[string]bool `json:"featureGates,omitempty"`
}

KubeAPIServerComponent holds settings to kube-apiserver component of the kubernetes. Karmada uses it as it's own apiserver in order to provide Kubernetes-native APIs.

func (*KubeAPIServerComponent) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeAPIServerComponent.

func (*KubeAPIServerComponent) DeepCopyInto

func (in *KubeAPIServerComponent) DeepCopyInto(out *KubeAPIServerComponent)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type KubeControllerManagerComponent

type KubeControllerManagerComponent struct {
	// ImageMeta allows to customize the image used for the karmada-scheduler component
	ImageMeta `json:",inline"`

	// Number of desired pods. This is a pointer to distinguish between explicit
	// zero and not specified. Defaults to 1.
	// +optional
	Replicas *int32 `json:"replicas,omitempty"`

	// A list of controllers to enable. '*' enables all on-by-default controllers,
	// 'foo' enables the controller named 'foo', '-foo' disables the controller named
	// 'foo'.
	//
	// All controllers: attachdetach, bootstrapsigner, cloud-node-lifecycle,
	// clusterrole-aggregation, cronjob, csrapproving, csrcleaner, csrsigning,
	// daemonset, deployment, disruption, endpoint, endpointslice,
	// endpointslicemirroring, ephemeral-volume, garbagecollector,
	// horizontalpodautoscaling, job, namespace, nodeipam, nodelifecycle,
	// persistentvolume-binder, persistentvolume-expander, podgc, pv-protection,
	// pvc-protection, replicaset, replicationcontroller, resourcequota,
	// root-ca-cert-publisher, route, service, serviceaccount, serviceaccount-token,
	// statefulset, tokencleaner, ttl, ttl-after-finished
	// Disabled-by-default controllers: bootstrapsigner, tokencleaner (default [*])
	// Actual Supported controllers depend on the version of Kubernetes. See
	// https://kubernetes.io/docs/reference/command-line-tools-reference/kube-controller-manager/
	// for details.
	//
	// However, Karmada uses Kubernetes Native API definitions for federated resource template,
	// so it doesn't need enable some resource related controllers like daemonset, deployment etc.
	// On the other hand, Karmada leverages the capabilities of the Kubernetes controller to
	// manage the lifecycle of the federated resource, so it needs to enable some controllers.
	// For example, the `namespace` controller is used to manage the lifecycle of the namespace
	// and the `garbagecollector` controller handles automatic clean-up of redundant items in
	// your karmada.
	//
	// According to the user feedback and karmada requirements, the following controllers are
	// enabled by default: namespace, garbagecollector, serviceaccount-token, ttl-after-finished,
	// bootstrapsigner,csrapproving,csrcleaner,csrsigning. See
	// https://karmada.io/docs/administrator/configuration/configure-controllers#kubernetes-controllers
	//
	// Others are disabled by default. If you want to enable or disable other controllers, you
	// have to explicitly specify all the controllers that kube-controller-manager shoud enable
	// at startup phase.
	// +optional
	Controllers []string `json:"controllers,omitempty"`

	// ExtraArgs is an extra set of flags to pass to the kube-controller-manager component or
	// override. A key in this map is the flag name as it appears on the command line except
	// without leading dash(es).
	//
	// Note: This is a temporary solution to allow for the configuration of the
	// kube-controller-manager component. In the future, we will provide a more structured way
	// to configure the component. Once that is done, this field will be discouraged to be used.
	// Incorrect settings on this feild maybe lead to the corresponding component in an unhealthy
	// state. Before you do it, please confirm that you understand the risks of this configuration.
	//
	// For supported flags, please see
	// https://kubernetes.io/docs/reference/command-line-tools-reference/kube-controller-manager/
	// for details.
	// +optional
	ExtraArgs map[string]string `json:"extraArgs,omitempty"`

	// Compute Resources required by this component.
	// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
	// +optional
	Resources corev1.ResourceRequirements `json:"resources,omitempty"`

	// FeatureGates enabled by the user.
	// More info: https://kubernetes.io/docs/reference/command-line-tools-reference/kube-controller-manager/
	// +optional
	FeatureGates map[string]bool `json:"featureGates,omitempty"`
}

KubeControllerManagerComponent holds settings to kube-controller-manager component of the kubernetes. Karmada uses it to manage the lifecycle of the federated resources. An especial case is the garbage collection of the orphan resources in your karmada.

func (*KubeControllerManagerComponent) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeControllerManagerComponent.

func (*KubeControllerManagerComponent) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type LocalEtcd

type LocalEtcd struct {
	// ImageMeta allows to customize the container used for etcd
	ImageMeta `json:",inline"`

	// DataVolume is the volume etcd will place its data.
	// If empty, etcd will use an emptyDir.
	// +optional
	DataVolume *corev1.PersistentVolumeClaimTemplate `json:"dataVolume"`

	// ServerCertSANs sets extra Subject Alternative Names for the etcd server signing cert.
	// +optional
	ServerCertSANs []string `json:"serverCertSANs,omitempty"`

	// PeerCertSANs sets extra Subject Alternative Names for the etcd peer signing cert.
	// +optional
	PeerCertSANs []string `json:"peerCertSANs,omitempty"`
}

LocalEtcd describes that firefly should run an etcd cluster in a host cluster.

func (*LocalEtcd) DeepCopy

func (in *LocalEtcd) DeepCopy() *LocalEtcd

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocalEtcd.

func (*LocalEtcd) DeepCopyInto

func (in *LocalEtcd) DeepCopyInto(out *LocalEtcd)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type LocalMySQL

type LocalMySQL struct {
	// ImageMeta allows to customize the container used for mysql
	// If empty, `docker.io/library/mysql:8` will be used by default.
	ImageMeta `json:",inline"`
}

LocalMySQL describes that firefly should run a mysql cluster in a host cluster.

func (*LocalMySQL) DeepCopy

func (in *LocalMySQL) DeepCopy() *LocalMySQL

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocalMySQL.

func (*LocalMySQL) DeepCopyInto

func (in *LocalMySQL) DeepCopyInto(out *LocalMySQL)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type LocalPostgres

type LocalPostgres struct {
	// ImageMeta allows to customize the container used for postgres
	// If empty, `docker.io/library/postgres:10` will be used by default.
	ImageMeta `json:",inline"`
}

LocalPostgres describes that firefly should run a postgres cluster in a host cluster.

func (*LocalPostgres) DeepCopy

func (in *LocalPostgres) DeepCopy() *LocalPostgres

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocalPostgres.

func (*LocalPostgres) DeepCopyInto

func (in *LocalPostgres) DeepCopyInto(out *LocalPostgres)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type MySQL

type MySQL struct {
	// Local provides configuration knobs for configuring the built-in mysql instance
	// Local and External are mutually exclusive
	// +optional
	Local *LocalPostgres `json:"local,omitempty"`
}

MySQL holds settings to clusterpedia-storage-mysql component of the clusterpeida.

func (*MySQL) DeepCopy

func (in *MySQL) DeepCopy() *MySQL

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MySQL.

func (*MySQL) DeepCopyInto

func (in *MySQL) DeepCopyInto(out *MySQL)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type Networking

type Networking struct {
	// ServiceSubnet is the subnet used by k8s services. Defaults to "10.96.0.0/12".
	// +optional
	ServiceSubnet string `json:"serviceSubnet,omitempty"`

	// DNSDomain is the dns domain used by k8s services. Defaults to "cluster.local".
	// +optional
	DNSDomain string `json:"dnsDomain,omitempty"`
}

Networking contains elements describing cluster's networking configuration

func (*Networking) DeepCopy

func (in *Networking) DeepCopy() *Networking

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Networking.

func (*Networking) DeepCopyInto

func (in *Networking) DeepCopyInto(out *Networking)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type Postgres

type Postgres struct {
	// Local provides configuration knobs for configuring the built-in postgres instance
	// Local and External are mutually exclusive
	// +optional
	Local *LocalPostgres `json:"local,omitempty"`
}

Postgres holds settings to clusterpedia-storage-postgres component of the clusterpeida.

func (*Postgres) DeepCopy

func (in *Postgres) DeepCopy() *Postgres

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Postgres.

func (*Postgres) DeepCopyInto

func (in *Postgres) DeepCopyInto(out *Postgres)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type SchedulerComponent

type SchedulerComponent struct {
	// KarmadaScheduler holds settings to karmada-scheduler conponent of the karmada.
	// +optional
	KarmadaScheduler KarmadaSchedulerComponent `json:"karmadaScheduler,omitempty"`

	// KarmadaScheduler holds settings to karmada-descheduler conponent of the karmada.
	// +optional
	KarmadaDescheduler KarmadaDeschedulerComponent `json:"karmadaDescheduler,omitempty"`

	// KarmadaSchedulerEstimator holds settings to karmada-scheduler-estimator conponent of the karmada.
	// +optional
	KarmadaSchedulerEstimator KarmadaSchedulerEstimatorComponent `json:"karmadaSchedulerEstimator,omitempty"`
}

SchedulerComponent holds settings to scheduler components of the cluster.

func (*SchedulerComponent) DeepCopy

func (in *SchedulerComponent) DeepCopy() *SchedulerComponent

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SchedulerComponent.

func (*SchedulerComponent) DeepCopyInto

func (in *SchedulerComponent) DeepCopyInto(out *SchedulerComponent)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type WebhookComponent

type WebhookComponent struct {
	// KarmadaWebhook holds settings to karmada-webook component of the karmada.
	KarmadaWebhook KarmadaWebhookComponent `json:"karmadaWebhook,omitempty"`
	// FireflyKarmadaWebhook holds settings to firefly-karmada-webook component of the karmada.
	FireflyKarmadaWebhook KarmadaWebhookComponent `json:"fireflyKarmadaWebhook,omitempty"`
}

WebhookComponent holds settings to webhook component of the karmada.

func (*WebhookComponent) DeepCopy

func (in *WebhookComponent) DeepCopy() *WebhookComponent

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookComponent.

func (*WebhookComponent) DeepCopyInto

func (in *WebhookComponent) DeepCopyInto(out *WebhookComponent)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL