mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-29 17:41:13 +00:00
83 lines
1.9 KiB
Go
83 lines
1.9 KiB
Go
// Copyright 2019 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package add
|
|
|
|
import (
|
|
"errors"
|
|
"log"
|
|
"slices"
|
|
|
|
"github.com/spf13/cobra"
|
|
"sigs.k8s.io/kustomize/api/pkg/loader"
|
|
"sigs.k8s.io/kustomize/kustomize/v5/commands/internal/kustfile"
|
|
"sigs.k8s.io/kustomize/kustomize/v5/commands/internal/util"
|
|
"sigs.k8s.io/kustomize/kyaml/filesys"
|
|
)
|
|
|
|
type addComponentOptions struct {
|
|
componentFilePaths []string
|
|
}
|
|
|
|
// newCmdAddComponent adds the name of a file containing a component to the kustomization file.
|
|
func newCmdAddComponent(fSys filesys.FileSystem) *cobra.Command {
|
|
var o addComponentOptions
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "component",
|
|
Short: "Add the name of a file containing a component to the kustomization file",
|
|
Example: `
|
|
add component {filepath}`,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
err := o.Validate(args)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return o.RunAddComponent(fSys)
|
|
},
|
|
}
|
|
return cmd
|
|
}
|
|
|
|
// Validate validates addComponent command.
|
|
func (o *addComponentOptions) Validate(args []string) error {
|
|
if len(args) == 0 {
|
|
return errors.New("must specify a component file")
|
|
}
|
|
o.componentFilePaths = args
|
|
return nil
|
|
}
|
|
|
|
// RunAddComponent runs addComponent command (do real work).
|
|
func (o *addComponentOptions) RunAddComponent(fSys filesys.FileSystem) error {
|
|
components, err := util.GlobPatternsWithLoader(fSys, loader.NewFileLoaderAtCwd(fSys), o.componentFilePaths, false)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if len(components) == 0 {
|
|
return nil
|
|
}
|
|
|
|
mf, err := kustfile.NewKustomizationFile(fSys)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
m, err := mf.Read()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, component := range components {
|
|
if mf.GetPath() != component {
|
|
if slices.Contains(m.Components, component) {
|
|
log.Printf("component %s already in kustomization file", component)
|
|
continue
|
|
}
|
|
m.Components = append(m.Components, component)
|
|
}
|
|
}
|
|
|
|
return mf.Write(m)
|
|
}
|