995538829e
Management support is only available to the ephemeral host. This change extends support of management features to hosts not labeled as the ephemeral host. Change-Id: I0ac917f2633f659e56e67cafc52d2db9d967754f Signed-off-by: Drew Walters <andrew.walters@att.com>
54 lines
1.5 KiB
Go
54 lines
1.5 KiB
Go
/*
|
|
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
|
|
|
|
https://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 remote
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
aerror "opendev.org/airship/airshipctl/pkg/errors"
|
|
)
|
|
|
|
type GenericError struct {
|
|
aerror.AirshipError
|
|
}
|
|
|
|
func NewRemoteDirectErrorf(format string, v ...interface{}) error {
|
|
e := &GenericError{}
|
|
e.Message = fmt.Sprintf(format, v...)
|
|
return e
|
|
}
|
|
|
|
// ErrUnknownManagementType is an error that indicates the remote type specified in the airshipctl management
|
|
// configuration (e.g. redfish, redfish-dell) is not supported.
|
|
type ErrUnknownManagementType struct {
|
|
aerror.AirshipError
|
|
Type string
|
|
}
|
|
|
|
func (e ErrUnknownManagementType) Error() string {
|
|
return fmt.Sprintf("unknown management type: %s", e.Type)
|
|
}
|
|
|
|
// ErrMissingBootstrapInfoOption is an error that indicates a bootstrap option is missing in the airshipctl
|
|
// bootstrapInfo configuration.
|
|
type ErrMissingBootstrapInfoOption struct {
|
|
aerror.AirshipError
|
|
What string
|
|
}
|
|
|
|
func (e ErrMissingBootstrapInfoOption) Error() string {
|
|
return fmt.Sprintf("missing bootstrapInfo option: %s", e.What)
|
|
}
|