2020-04-01 09:55:42 -05:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2019-09-01 05:14:23 +00:00
|
|
|
package cloudinit
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ErrDataNotSupplied error returned of no user-data or network configuration
|
|
|
|
// in the Secret
|
|
|
|
type ErrDataNotSupplied struct {
|
|
|
|
DocName string
|
|
|
|
Key string
|
|
|
|
}
|
|
|
|
|
2020-02-19 12:10:38 +04:00
|
|
|
// ErrDuplicateNetworkDataDocuments error returned if multiple network documents
|
|
|
|
// were found with the same name in the same namespace
|
|
|
|
type ErrDuplicateNetworkDataDocuments struct {
|
|
|
|
DocName string
|
|
|
|
Namespace string
|
|
|
|
}
|
|
|
|
|
2019-09-01 05:14:23 +00:00
|
|
|
func (e ErrDataNotSupplied) Error() string {
|
|
|
|
return fmt.Sprintf("Document %s has no key %s", e.DocName, e.Key)
|
|
|
|
}
|
2020-02-19 12:10:38 +04:00
|
|
|
|
|
|
|
func (e ErrDuplicateNetworkDataDocuments) Error() string {
|
|
|
|
return fmt.Sprintf("Found more than one document with the name %s in namespace %s", e.DocName, e.Namespace)
|
|
|
|
}
|