github.com/caos/orbos@v1.5.14-0.20221103111702-e6cd0cea7ad4/internal/operator/boom/api/latest/apply.go (about)

     1  package latest
     2  
     3  //Apply: When the folder contains a kustomization.yaml-file the subfolders will be ignored. Otherwise all files inclusive the files contained by the subfolder will be applied if deploy=true, with deploy=false all will be deleted.
     4  type Apply struct {
     5  	//Flag if tool should be deployed
     6  	//@default: false
     7  	Deploy bool `json:"deploy,omitempty" yaml:"deploy,omitempty"`
     8  	//Relative path of folder in cloned git repository which should be applied
     9  	Folder string `json:"folder,omitempty" yaml:"folder,omitempty"`
    10  }