supervisor

package
v1.35.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 12, 2024 License: MPL-2.0 Imports: 20 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BuildInfo

type BuildInfo struct {
	// The version of Encore with which the app was compiled.
	// This is string is for informational use only, and its format should not be relied on.
	EncoreCompiler string

	// AppCommit describes the commit of the app.
	AppCommit CommitInfo
}

type CommitInfo

type CommitInfo struct {
	Revision    string
	Uncommitted bool
}

func (CommitInfo) AsRevisionString

func (ci CommitInfo) AsRevisionString() string

type Config

type Config struct {
	Procs []Proc `json:"procs"`

	// NoopGateways are the noop-gateways to start up,
	// keyed by gateway name.
	NoopGateways map[string]*noopgateway.Description
}

Config is the configuration used by the supervisor.

type Proc

type Proc struct {
	// ID is a unique id representing this process.
	ID string `json:"id"`

	// Command and arguments for running the proc.
	Command []string `json:"command"`

	// Extra environment variables to pass.
	Env []string `json:"env"`

	// supervisedProc and gateway names included in this proc.
	Services []string `json:"services"`
	Gateways []string `json:"gateways"`
}

Proc represents a supervised proc.

type Supervisor

type Supervisor struct {
	// contains filtered or unexported fields
}

func New

func New(cfg *Config, rtCfg *runtimev1.RuntimeConfig) (*Supervisor, error)

New creates a new supervisor.

func (*Supervisor) Run

func (s *Supervisor) Run(ctx context.Context) error

Run runs the supervisor. It returns immediately on error, and otherwise blocks until ctx is canceled.

Directories

Path Synopsis
cmd

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL