Documentation ¶
Index ¶
Constants ¶
View Source
const ( //ReconcilePort target port. Useful when component wants refresh its look in cluster, triggers reconcile for the node ReconcilePort = "_reconcile" //ControlPort dashboard ControlPort = "_control" // SettingsPort settings page SettingsPort = "_settings" //NodePort source port. Received tinynode object NodePort = "_node" //ClientPort receives a client wrapper to work with cluster resources ClientPort = "_client" //PreInstall port receives settings PreInstall = "_module_pre_install" PreDelete = "_module_pre_delete" )
system ports
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ComponentInfo ¶
func (ComponentInfo) GetResourceName ¶
func (c ComponentInfo) GetResourceName() string
type Info ¶
type Info struct { Name string VersionID string // if module's build is registered Version string Addr string //listed address }
func (Info) GetMajorName ¶
func (Info) GetMajorNameSanitised ¶
func (Info) GetNameAndVersion ¶ added in v0.1.31
GetNameAndVersion Container image full name
type Port ¶ added in v0.1.69
type Port struct { // if that's a source port, source means it accepts the data, the source of incoming data Source bool // which side of the node will have this port Position Position // Name lower case programmatic name Name string // Human readable name (capital cased) Label string // DTO object Configuration interface{} }
Click to show internal directories.
Click to hide internal directories.