mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-29 05:06:28 +00:00
42 lines
1.5 KiB
Go
42 lines
1.5 KiB
Go
/*
|
|
Copyright 2022 The KubeSphere 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.
|
|
*/
|
|
|
|
package scope
|
|
|
|
import (
|
|
infrav1 "github.com/kubesphere/kubekey/api/v1beta1"
|
|
"github.com/kubesphere/kubekey/pkg"
|
|
)
|
|
|
|
// KKInstanceScope is a scope for global KKInstance.
|
|
type KKInstanceScope interface {
|
|
pkg.ClusterScoper
|
|
// ComponentZone returns the cluster zone.
|
|
ComponentZone() string
|
|
// ComponentHost returns the host to download the binaries.
|
|
ComponentHost() string
|
|
// ComponentOverrides returns the component overrides.
|
|
ComponentOverrides() []infrav1.Override
|
|
// GlobalAuth returns the global auth configuration of all instances.
|
|
GlobalAuth() *infrav1.Auth
|
|
// GlobalRegistry returns the global registry configuration of all instances.
|
|
GlobalRegistry() *infrav1.Registry
|
|
// GetInstancesSpecByRole returns all instances filtered by role.
|
|
GetInstancesSpecByRole(role infrav1.Role) []infrav1.KKInstanceSpec
|
|
// AllInstances returns all KKInstance existing in cluster.
|
|
AllInstances() ([]*infrav1.KKInstance, error)
|
|
}
|