mirror of
https://github.com/kubevela/kubevela.git
synced 2026-08-27 16:17:34 +00:00
* Feat: support config validation depends on CueX Signed-off-by: wuzhongjian <wuzhongjian_yewu@cmss.chinamobile.com> * Feat: support config validation depends on CueX Signed-off-by: wuzhongjian <wuzhongjian_yewu@cmss.chinamobile.com> * Feat: support config validation depends on CueX Signed-off-by: wuzhongjian <wuzhongjian_yewu@cmss.chinamobile.com> * Feat: support config validation depends on CueX Signed-off-by: wuzhongjian <wuzhongjian_yewu@cmss.chinamobile.com> --------- Signed-off-by: wuzhongjian <wuzhongjian_yewu@cmss.chinamobile.com>
42 lines
1.2 KiB
Go
42 lines
1.2 KiB
Go
/*
|
|
Copyright 2023 The KubeVela 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 registries
|
|
|
|
import "context"
|
|
|
|
// RegistryHelper provides helper functions for common Registry operations
|
|
type RegistryHelper interface {
|
|
// Auth check if secret has correct credential to authenticate with remote registry
|
|
Auth(ctx context.Context, imageRegistry *ImageRegistry) (bool, error)
|
|
}
|
|
|
|
type registryHelper struct{}
|
|
|
|
// NewRegistryHelper creates a registry helper
|
|
func NewRegistryHelper() RegistryHelper {
|
|
return ®istryHelper{}
|
|
}
|
|
|
|
func (r *registryHelper) Auth(ctx context.Context, imageRegistry *ImageRegistry) (bool, error) {
|
|
secretAuth, err := NewSecretAuthenticator(imageRegistry)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
return secretAuth.Auth(ctx)
|
|
}
|