Documentation ¶
Index ¶
Constants ¶
View Source
const (
ConfigManagementPluginKind string = "ConfigManagementPlugin"
)
Variables ¶
This section is empty.
Functions ¶
func ValidatePluginConfig ¶
func ValidatePluginConfig(config PluginConfig) error
Types ¶
type CMPServerInitConstants ¶
type CMPServerInitConstants struct {
PluginConfig PluginConfig
}
type Command ¶
type Command struct { Command []string `json:"command,omitempty"` Args []string `json:"args,omitempty"` }
Command holds binary path and arguments list
type PluginConfig ¶
type PluginConfig struct { metav1.TypeMeta `json:",inline"` Metadata metav1.ObjectMeta `json:"metadata"` Spec PluginConfigSpec `json:"spec"` }
func ReadPluginConfig ¶
func ReadPluginConfig(filePath string) (*PluginConfig, error)
func (*PluginConfig) Address ¶
func (cfg *PluginConfig) Address() string
type PluginConfigSpec ¶
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
Service implements ConfigManagementPluginService interface
func NewService ¶
func NewService(initConstants CMPServerInitConstants) *Service
NewService returns a new instance of the ConfigManagementPluginService
func (*Service) GenerateManifest ¶
func (s *Service) GenerateManifest(stream apiclient.ConfigManagementPluginService_GenerateManifestServer) error
GenerateManifest runs generate command from plugin config file and returns generated manifest files
func (*Service) MatchRepository ¶
func (s *Service) MatchRepository(stream apiclient.ConfigManagementPluginService_MatchRepositoryServer) error
MatchRepository receives the application stream and checks whether its repository type is supported by the config management plugin server. The checks are implemented in the following order:
- If spec.Discover.FileName is provided it finds for a name match in Applications files
- If spec.Discover.Find.Glob is provided if finds for a glob match in Applications files
- Otherwise it runs the spec.Discover.Find.Command
Click to show internal directories.
Click to hide internal directories.