
Plugin extended to support new kustomize plugin framework which consider each plugin as a container Change-Id: If55b7093f711401165b7d4fd3f5b1059fde464ff Relates-To: #340
118 lines
3.2 KiB
Go
118 lines
3.2 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 replacement
|
|
|
|
import (
|
|
"fmt"
|
|
"reflect"
|
|
"strings"
|
|
|
|
"sigs.k8s.io/kustomize/api/types"
|
|
)
|
|
|
|
// ErrTypeMismatch is returned for type conversion errors. This error
|
|
// is raised if JSON path element points to a wrong data structure e.g.
|
|
// JSON path 'a.b[x=y]c' considers that there is a list of maps under key 'b'
|
|
// therefore ErrTypeMismatch will be returned for following structure
|
|
//
|
|
// a:
|
|
// b:
|
|
// - 'some string'
|
|
type ErrTypeMismatch struct {
|
|
Actual interface{}
|
|
Expectation string
|
|
}
|
|
|
|
func (e ErrTypeMismatch) Error() string {
|
|
return fmt.Sprintf("%#v %s", e.Actual, e.Expectation)
|
|
}
|
|
|
|
// ErrBadConfiguration returned in case of plugin misconfiguration
|
|
type ErrBadConfiguration struct {
|
|
Msg string
|
|
}
|
|
|
|
func (e ErrBadConfiguration) Error() string {
|
|
return e.Msg
|
|
}
|
|
|
|
// ErrMultipleResources returned if multiple resources were found
|
|
type ErrMultipleResources struct {
|
|
ObjRef *types.Target
|
|
}
|
|
|
|
func (e ErrMultipleResources) Error() string {
|
|
return fmt.Sprintf("found more than one resources matching identified by %s", printFields(e.ObjRef))
|
|
}
|
|
|
|
// ErrSourceNotFound returned if a replacement source resource does not exist in resource map
|
|
type ErrSourceNotFound struct {
|
|
ObjRef *types.Target
|
|
}
|
|
|
|
func (e ErrSourceNotFound) Error() string {
|
|
return fmt.Sprintf("failed to find any source resources identified by %s", printFields(e.ObjRef))
|
|
}
|
|
|
|
// ErrTargetNotFound returned if a replacement target resource does not exist in the resource map
|
|
type ErrTargetNotFound struct {
|
|
ObjRef *types.Selector
|
|
}
|
|
|
|
func (e ErrTargetNotFound) Error() string {
|
|
return fmt.Sprintf("failed to find any target resources identified by %s", printFields(e.ObjRef))
|
|
}
|
|
|
|
// ErrPatternSubstring returned in case of issues with sub-string pattern substitution
|
|
type ErrPatternSubstring struct {
|
|
Msg string
|
|
}
|
|
|
|
func (e ErrPatternSubstring) Error() string {
|
|
return e.Msg
|
|
}
|
|
|
|
// ErrIndexOutOfBound returned if JSON path points to a wrong index of a list
|
|
type ErrIndexOutOfBound struct {
|
|
Index int
|
|
Length int
|
|
}
|
|
|
|
func (e ErrIndexOutOfBound) Error() string {
|
|
return fmt.Sprintf("array index out of bounds: index %d, length %d", e.Index, e.Length)
|
|
}
|
|
|
|
// ErrValueNotFound returned if value specified in fieldRef option was not found
|
|
type ErrValueNotFound struct {
|
|
ID string
|
|
}
|
|
|
|
func (e ErrValueNotFound) Error() string {
|
|
return fmt.Sprintf("unable to find value identified by %s", e.ID)
|
|
}
|
|
|
|
func printFields(objRef interface{}) string {
|
|
val := reflect.ValueOf(objRef).Elem()
|
|
valType := val.Type()
|
|
var res []string
|
|
for i := 0; i < val.NumField(); i++ {
|
|
field := val.Field(i)
|
|
if field.String() != "" {
|
|
res = append(res, fmt.Sprintf("%s: %v", valType.Field(i).Name, field.Interface()))
|
|
}
|
|
}
|
|
return strings.Join(res, " ")
|
|
}
|