Documentation ¶
Overview ¶
Package cloudlaunch helps binaries run themselves on The Cloud, copying themselves to GCE.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { // Name is the name of a service to run. // This is the name of the systemd service (without .service) // and the name of the GCE instance. Name string // RestartPolicy controls whether the binary automatically restarts // on updates. The zero value means automatic. RestartPolicy RestartPolicy // BinaryBucket and BinaryObject are the GCS bucket and object // within that bucket containing the Linux binary to download // on boot and occasionally run. This binary must be public // (at least for now). BinaryBucket string BinaryObject string // defaults to Name GCEProjectID string Zone string // defaults to us-central1-f SSD bool Scopes []string // any additional scopes MachineType string InstanceName string }
func (*Config) MaybeDeploy ¶
func (c *Config) MaybeDeploy()
type RestartPolicy ¶
type RestartPolicy int
RestartPolicy controls whether the binary automatically restarts.
const ( RestartOnUpdates RestartPolicy = iota RestartNever )
Click to show internal directories.
Click to hide internal directories.