mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/yunionio/cloudpods.git
synced 2026-09-20 08:03:53 +08:00
Move container registry management into glance with import from kubeserver, add container_image model, resolve container_image_id in compute, and switch dashboard create flow to glance.
111 lines
2.8 KiB
Go
111 lines
2.8 KiB
Go
// Copyright 2019 Yunion
|
|
//
|
|
// 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 image
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"yunion.io/x/pkg/errors"
|
|
|
|
"yunion.io/x/onecloud/pkg/util/procutils"
|
|
)
|
|
|
|
type ImageTool interface {
|
|
Pull(image string, opt *PullOptions) (string, error)
|
|
Push(image string, opt *PushOptions) error
|
|
}
|
|
|
|
type imageTool struct {
|
|
address string
|
|
namespace string
|
|
}
|
|
|
|
func NewImageTool(address, namespace string) ImageTool {
|
|
return &imageTool{
|
|
address: address,
|
|
namespace: namespace,
|
|
}
|
|
}
|
|
|
|
func (i imageTool) newCtrCmd(args ...string) *procutils.Command {
|
|
reqArgs := []string{"--address", i.address}
|
|
if i.namespace != "" {
|
|
reqArgs = append(reqArgs, "--namespace", i.namespace)
|
|
}
|
|
args = append(reqArgs, args...)
|
|
return procutils.NewRemoteCommandAsFarAsPossible("ctr", args...)
|
|
}
|
|
|
|
type RepoCommonOptions struct {
|
|
SkipVerify bool
|
|
PlainHttp bool
|
|
Username string
|
|
Password string
|
|
}
|
|
|
|
type PullOptions struct {
|
|
RepoCommonOptions
|
|
}
|
|
|
|
func (i imageTool) newRepoCommonArgs(opt RepoCommonOptions) []string {
|
|
args := []string{}
|
|
// Newer ctr uses transfer service by default; --skip-verify/--plain-http require --local.
|
|
if opt.SkipVerify || opt.PlainHttp {
|
|
args = append(args, "--local")
|
|
}
|
|
if opt.PlainHttp {
|
|
args = append(args, "--plain-http")
|
|
}
|
|
if opt.SkipVerify {
|
|
args = append(args, "--skip-verify")
|
|
}
|
|
if opt.Username != "" && opt.Password != "" {
|
|
args = append(args, "--user", fmt.Sprintf("%s:%s", opt.Username, opt.Password))
|
|
}
|
|
return args
|
|
}
|
|
|
|
func (i imageTool) Pull(image string, opt *PullOptions) (string, error) {
|
|
args := []string{}
|
|
args = append(args, []string{"images", "pull"}...)
|
|
args = append(args, i.newRepoCommonArgs(opt.RepoCommonOptions)...)
|
|
args = append(args, []string{image}...)
|
|
|
|
cmd := i.newCtrCmd(args...)
|
|
out, err := cmd.Output()
|
|
if err != nil {
|
|
return "", errors.Wrapf(err, "pull imageTool: %s", out)
|
|
}
|
|
return image, nil
|
|
}
|
|
|
|
type PushOptions struct {
|
|
RepoCommonOptions
|
|
}
|
|
|
|
func (i imageTool) Push(image string, opt *PushOptions) error {
|
|
args := []string{}
|
|
args = append(args, []string{"images", "push"}...)
|
|
args = append(args, i.newRepoCommonArgs(opt.RepoCommonOptions)...)
|
|
args = append(args, []string{image}...)
|
|
|
|
cmd := i.newCtrCmd(args...)
|
|
out, err := cmd.Output()
|
|
if err != nil {
|
|
return errors.Wrapf(err, "push %s: %s", image, out)
|
|
}
|
|
return nil
|
|
}
|