-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* repo-sync-2024-02-04T16:00:21+0800 * fix conflict * fix unit test * fix nil pointer * repo-sync-2024-03-16T09:53:20+0800 --------- Co-authored-by: UniqueMarvin <jiamingyang.jmy@antgroup.com>
- Loading branch information
1 parent
0b6a347
commit 4e06b22
Showing
70 changed files
with
1,864 additions
and
424 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
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,59 @@ | ||
// Copyright 2024 Ant Group Co., Ltd. | ||
// | ||
// 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 cmd | ||
|
||
import ( | ||
"github.com/spf13/cobra" | ||
|
||
"github.com/secretflow/kuscia/pkg/agent/local/store/kii" | ||
"github.com/secretflow/kuscia/pkg/agent/local/store/layout" | ||
"github.com/secretflow/kuscia/pkg/utils/nlog" | ||
) | ||
|
||
func mountCommand(cmdCtx *Context) *cobra.Command { | ||
mountCmd := &cobra.Command{ | ||
Use: "mount MOUNT_ID IMAGE TARGET_PATH", | ||
Short: "mount a image to path", | ||
DisableFlagsInUseLine: true, | ||
Example: ` | ||
# Mount image to dir | ||
kuscia image mount unique_id app:0.1 target_dir/ | ||
`, | ||
Args: cobra.ExactArgs(3), | ||
Run: func(cmd *cobra.Command, args []string) { | ||
if err := mountImage(cmdCtx, args[0], args[1], args[2]); err != nil { | ||
nlog.Fatal(err) | ||
} | ||
}, | ||
} | ||
|
||
return mountCmd | ||
} | ||
|
||
func mountImage(cmdCtx *Context, mountID, image, targetPath string) error { | ||
imageName, err := kii.NewImageName(image) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
bundle, err := layout.NewBundle(cmdCtx.StorageDir) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
rBundle := bundle.GetContainerBundle(mountID) | ||
|
||
return cmdCtx.Store.MountImage(imageName, kii.Plain, rBundle.GetFsWorkingDirPath(), targetPath) | ||
} |
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,38 @@ | ||
// Copyright 2024 Ant Group Co., Ltd. | ||
// | ||
// 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 cmd | ||
|
||
import ( | ||
"path/filepath" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
|
||
storetesting "github.com/secretflow/kuscia/pkg/agent/local/store/testing" | ||
) | ||
|
||
func TestMountCommand(t *testing.T) { | ||
rootDir := t.TempDir() | ||
|
||
context := &Context{ | ||
StorageDir: filepath.Join(rootDir, "storage"), | ||
Store: storetesting.NewFakeStore(), | ||
} | ||
|
||
cmd := mountCommand(context) | ||
args := []string{"123", "app:0.1", filepath.Join(rootDir, "rootfs")} | ||
cmd.SetArgs(args) | ||
assert.NoError(t, cmd.Execute()) | ||
} |
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,26 @@ | ||
// Copyright 2024 Ant Group Co., Ltd. | ||
// | ||
// 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 modules | ||
|
||
import ( | ||
"context" | ||
"testing" | ||
) | ||
|
||
func Test_RunDataMesh(t *testing.T) { | ||
runCtx, cancel := context.WithCancel(context.Background()) | ||
dependency := mockDependency(t) | ||
RunDataMesh(runCtx, cancel, dependency) | ||
} |
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,61 @@ | ||
// Copyright 2024 Ant Group Co., Ltd. | ||
// | ||
// 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 modules | ||
|
||
import ( | ||
"context" | ||
"os" | ||
"path/filepath" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
clientsetfake "k8s.io/client-go/kubernetes/fake" | ||
restclient "k8s.io/client-go/rest" | ||
|
||
kusciaclientsetfake "github.com/secretflow/kuscia/pkg/crd/clientset/versioned/fake" | ||
"github.com/secretflow/kuscia/pkg/utils/kubeconfig" | ||
"github.com/secretflow/kuscia/pkg/utils/kusciaconfig" | ||
"github.com/secretflow/kuscia/pkg/utils/nlog" | ||
) | ||
|
||
func Test_RunDomainRoute(t *testing.T) { | ||
tmpDir := t.TempDir() | ||
path, err := os.Getwd() | ||
assert.NoError(t, err) | ||
workDir := strings.SplitN(path, "cmd", 2)[0] | ||
nlog.Infof("work dir is: %s", workDir) | ||
assert.NoError(t, err) | ||
dependency := mockDependency(t) | ||
dependency.RootDir = workDir | ||
dependency.Master = kusciaconfig.MasterConfig{ | ||
APIServer: &kusciaconfig.APIServerConfig{ | ||
KubeConfig: filepath.Join(tmpDir, "etc/kubeconfig"), | ||
Endpoint: "https://127.0.0.1:6443", | ||
}, | ||
KusciaAPI: &kusciaconfig.ServiceConfig{ | ||
Endpoint: "http://127.0.0.1:8092", | ||
}, | ||
} | ||
dependency.Clients = &kubeconfig.KubeClients{ | ||
KubeClient: clientsetfake.NewSimpleClientset(), | ||
KusciaClient: kusciaclientsetfake.NewSimpleClientset(), | ||
Kubeconfig: &restclient.Config{ | ||
Host: "https://127.0.0.1:6443", | ||
}, | ||
} | ||
runCtx, cancel := context.WithCancel(context.Background()) | ||
RunDomainRoute(runCtx, cancel, dependency) | ||
} |
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,35 @@ | ||
// Copyright 2024 Ant Group Co., Ltd. | ||
// | ||
// 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 modules | ||
|
||
import ( | ||
"context" | ||
"testing" | ||
|
||
"github.com/secretflow/kuscia/cmd/kuscia/confloader" | ||
) | ||
|
||
func TestRunEnvoy(t *testing.T) { | ||
dependency := &Dependencies{ | ||
KusciaConfig: confloader.KusciaConfig{ | ||
RootDir: "./", | ||
DomainID: "alice", | ||
}, | ||
} | ||
|
||
runCtx, cancel := context.WithCancel(context.Background()) | ||
|
||
RunEnvoy(runCtx, cancel, dependency) | ||
} |
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,26 @@ | ||
// Copyright 2024 Ant Group Co., Ltd. | ||
// | ||
// 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 modules | ||
|
||
import ( | ||
"context" | ||
"testing" | ||
) | ||
|
||
func Test_RunKusciaAPI(t *testing.T) { | ||
runCtx, cancel := context.WithCancel(context.Background()) | ||
dependency := mockDependency(t) | ||
RunKusciaAPI(runCtx, cancel, dependency) | ||
} |
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
Oops, something went wrong.