mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
36 lines
996 B
Go
36 lines
996 B
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
package qemu
|
|
|
|
import "github.com/edgelesssys/constellation/v2/internal/versions"
|
|
|
|
// CloudNodeManager holds the QEMU cloud-node-manager configuration.
|
|
type CloudNodeManager struct{}
|
|
|
|
// Image returns the container image used to provide cloud-node-manager for the cloud-provider.
|
|
// Not used on QEMU.
|
|
func (c *CloudNodeManager) Image(k8sVersion versions.ValidK8sVersion) (string, error) {
|
|
return "", nil
|
|
}
|
|
|
|
// Path returns the path used by cloud-node-manager executable within the container image.
|
|
// Not used on QEMU.
|
|
func (c *CloudNodeManager) Path() string {
|
|
return ""
|
|
}
|
|
|
|
// ExtraArgs returns a list of arguments to append to the cloud-node-manager command.
|
|
// Not used on QEMU.
|
|
func (c *CloudNodeManager) ExtraArgs() []string {
|
|
return []string{}
|
|
}
|
|
|
|
// Supported is used to determine if cloud node manager is implemented for this cloud provider.
|
|
func (c *CloudNodeManager) Supported() bool {
|
|
return false
|
|
}
|