-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f1269df
commit 7d57a89
Showing
8 changed files
with
322 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/** | ||
* Copyright 2024 KusionStack 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 controller | ||
|
||
import ( | ||
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" | ||
"k8s.io/apimachinery/pkg/runtime/schema" | ||
"k8s.io/client-go/rest" | ||
) | ||
|
||
var _ ClusterProvider = &TestClusterProvider{} | ||
|
||
type TestClusterProvider struct { | ||
schema.GroupVersionResource | ||
ClusterNameToConfig map[string]*rest.Config // Map from cluster name to kubeconfig | ||
} | ||
|
||
func (p *TestClusterProvider) Init(config *rest.Config) { | ||
// Do nothing | ||
} | ||
|
||
func (p *TestClusterProvider) GetClusterMangementGVR() schema.GroupVersionResource { | ||
return p.GroupVersionResource | ||
} | ||
|
||
func (p *TestClusterProvider) GetClusterName(obj *unstructured.Unstructured) string { | ||
if obj == nil { | ||
return "" | ||
} | ||
return obj.GetName() // Use resource name as cluster name | ||
} | ||
|
||
func (p *TestClusterProvider) GetClusterConfig(obj *unstructured.Unstructured) *rest.Config { | ||
if obj == nil || p.ClusterNameToConfig == nil { | ||
return nil | ||
} | ||
config, ok := p.ClusterNameToConfig[obj.GetName()] | ||
if !ok { | ||
return nil | ||
} | ||
return config | ||
} |
Oops, something went wrong.