Files
cloudpods/pkg/compute/container_drivers/volume_mount/host_local.go
wanyaoqi 5fc42614c3 feat(region,host): container mps support (#20138)
* feat(region,host): container mps support

* fix: gencopyright
2024-04-30 17:39:40 +08:00

65 lines
2.0 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 volume_mount
import (
"context"
"yunion.io/x/pkg/util/sets"
"yunion.io/x/onecloud/pkg/apis"
api "yunion.io/x/onecloud/pkg/apis/compute"
"yunion.io/x/onecloud/pkg/compute/models"
"yunion.io/x/onecloud/pkg/httperrors"
"yunion.io/x/onecloud/pkg/mcclient"
)
func init() {
models.RegisterContainerVolumeMountDriver(newHostLocal())
}
type hostLocal struct{}
func newHostLocal() models.IContainerVolumeMountDriver {
return &hostLocal{}
}
func (h hostLocal) GetType() apis.ContainerVolumeMountType {
return apis.CONTAINER_VOLUME_MOUNT_TYPE_HOST_PATH
}
func (h hostLocal) ValidateCreateData(ctx context.Context, userCred mcclient.TokenCredential, pod *models.SGuest, vm *apis.ContainerVolumeMount) (*apis.ContainerVolumeMount, error) {
return vm, h.ValidatePodCreateData(ctx, userCred, vm, nil)
}
func (h hostLocal) ValidatePodCreateData(ctx context.Context, userCred mcclient.TokenCredential, vm *apis.ContainerVolumeMount, input *api.ServerCreateInput) error {
hp := vm.HostPath
if hp == nil {
return httperrors.NewNotEmptyError("host_path is nil")
}
if hp.Type == "" {
hp.Type = apis.CONTAINER_VOLUME_MOUNT_HOST_PATH_TYPE_FILE
}
if !sets.NewString(
string(apis.CONTAINER_VOLUME_MOUNT_HOST_PATH_TYPE_FILE),
string(apis.CONTAINER_VOLUME_MOUNT_HOST_PATH_TYPE_DIRECTORY)).Has(string(hp.Type)) {
return httperrors.NewInputParameterError("unsupported type %s", hp.Type)
}
if hp.Path == "" {
return httperrors.NewNotEmptyError("path is required")
}
return nil
}