mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
47 lines
1.2 KiB
Go
47 lines
1.2 KiB
Go
|
// Code generated by pluginator on LegacyOrderTransformer; DO NOT EDIT.
|
||
|
// pluginator {unknown 1970-01-01T00:00:00Z }
|
||
|
|
||
|
package builtins
|
||
|
|
||
|
import (
|
||
|
"sort"
|
||
|
|
||
|
"github.com/pkg/errors"
|
||
|
"sigs.k8s.io/kustomize/api/resmap"
|
||
|
"sigs.k8s.io/kustomize/api/resource"
|
||
|
)
|
||
|
|
||
|
// Sort the resources using an ordering defined in the Gvk class.
|
||
|
// This puts cluster-wide basic resources with no
|
||
|
// dependencies (like Namespace, StorageClass, etc.)
|
||
|
// first, and resources with a high number of dependencies
|
||
|
// (like ValidatingWebhookConfiguration) last.
|
||
|
type LegacyOrderTransformerPlugin struct{}
|
||
|
|
||
|
// Nothing needed for configuration.
|
||
|
func (p *LegacyOrderTransformerPlugin) Config(
|
||
|
_ *resmap.PluginHelpers, _ []byte) (err error) {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (p *LegacyOrderTransformerPlugin) Transform(m resmap.ResMap) (err error) {
|
||
|
resources := make([]*resource.Resource, m.Size())
|
||
|
ids := m.AllIds()
|
||
|
sort.Sort(resmap.IdSlice(ids))
|
||
|
for i, id := range ids {
|
||
|
resources[i], err = m.GetByCurrentId(id)
|
||
|
if err != nil {
|
||
|
return errors.Wrap(err, "expected match for sorting")
|
||
|
}
|
||
|
}
|
||
|
m.Clear()
|
||
|
for _, r := range resources {
|
||
|
m.Append(r)
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func NewLegacyOrderTransformerPlugin() resmap.TransformerPlugin {
|
||
|
return &LegacyOrderTransformerPlugin{}
|
||
|
}
|