Documentation ¶
Index ¶
- type AgentConfig
- func (*AgentConfig) Dependencies() []asset.Asset
- func (a *AgentConfig) Files() []*asset.File
- func (a *AgentConfig) Generate(_ context.Context, dependencies asset.Parents) error
- func (a *AgentConfig) Load(f asset.FileFetcher) (bool, error)
- func (*AgentConfig) Name() string
- func (a *AgentConfig) PersistToFile(directory string) error
- type AgentHosts
- func (a *AgentHosts) Dependencies() []asset.Asset
- func (a *AgentHosts) Files() []*asset.File
- func (a *AgentHosts) Generate(_ context.Context, dependencies asset.Parents) error
- func (a *AgentHosts) HostConfigFiles() (HostConfigFileMap, error)
- func (a *AgentHosts) Load(f asset.FileFetcher) (bool, error)
- func (a *AgentHosts) Name() string
- type HostConfigFileMap
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AgentConfig ¶
AgentConfig reads the agent-config.yaml file.
func (*AgentConfig) Dependencies ¶
func (*AgentConfig) Dependencies() []asset.Asset
Dependencies returns all of the dependencies directly needed to generate the asset.
func (*AgentConfig) Files ¶
func (a *AgentConfig) Files() []*asset.File
Files returns the files generated by the asset.
func (*AgentConfig) Load ¶
func (a *AgentConfig) Load(f asset.FileFetcher) (bool, error)
Load returns agent config asset from the disk.
func (*AgentConfig) Name ¶
func (*AgentConfig) Name() string
Name returns a human friendly name for the asset.
func (*AgentConfig) PersistToFile ¶
func (a *AgentConfig) PersistToFile(directory string) error
PersistToFile writes the agent-config.yaml file to the assets folder.
type AgentHosts ¶ added in v0.9.153
AgentHosts generates the hosts information from the AgentConfig and OptionalInstallConfig assets.
func (*AgentHosts) Dependencies ¶ added in v0.9.153
func (a *AgentHosts) Dependencies() []asset.Asset
Dependencies returns all of the dependencies directly needed the asset.
func (*AgentHosts) Files ¶ added in v0.9.153
func (a *AgentHosts) Files() []*asset.File
Files returns the files generated by the asset.
func (*AgentHosts) HostConfigFiles ¶ added in v0.9.153
func (a *AgentHosts) HostConfigFiles() (HostConfigFileMap, error)
HostConfigFiles returns a map from filename to contents of the files used for host-specific configuration by the agent installer client.
func (*AgentHosts) Load ¶ added in v0.9.153
func (a *AgentHosts) Load(f asset.FileFetcher) (bool, error)
Load currently does nothing.
func (*AgentHosts) Name ¶ added in v0.9.153
func (a *AgentHosts) Name() string
Name returns a human friendly name.
type HostConfigFileMap ¶
HostConfigFileMap is a map from a filepath ("<host>/<file>") to file content for hostconfig files.