stack

package
v0.10.0 Latest Latest
Warning

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

Go to latest
Published: Jun 12, 2026 License: Apache-2.0 Imports: 37 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// BackendK3d is the k3d backend (Docker-based, default)
	BackendK3d = "k3d"
	// BackendK3s is the standalone k3s backend (bare-metal)
	BackendK3s = "k3s"
)

Variables

This section is empty.

Functions

func ConfirmRunningServicesLoss added in v0.10.0

func ConfirmRunningServicesLoss(cfg *config.Config, u *ui.UI, action string, skipConfirm bool) (bool, error)

ConfirmRunningServicesLoss warns the operator when a destructive action (`obol stack down` / `obol stack purge`) is about to tear down a cluster that is currently serving traffic, and asks whether to proceed.

Returns true when the caller should continue. The rules:

  • No live offers and no live gateways -> pass through (no prompt).
  • skipConfirm (operator passed --yes) -> pass through.
  • Interactive TTY -> render the list and ask `ui.Confirm` (default N).
  • Non-interactive without --yes -> return a non-nil error so the caller fails closed. This is the safety bar that prevents a stray `ssh host '<obol stack down>'` from a non-prod worktree wiping the production stack without an explicit operator decision.

func DetectExistingBackend added in v0.3.1

func DetectExistingBackend(cfg *config.Config) string

DetectExistingBackend reads the persisted backend choice without falling back to a default. Returns empty string if no backend file exists, which lets Init() apply its own default.

func Down

func Down(cfg *config.Config, u *ui.UI, skipConfirm bool) error

Down stops the cluster and the DNS resolver container.

func ErrSafetyAborted added in v0.10.0

func ErrSafetyAborted() error

ErrSafetyAborted is exported for callers that want to detect the abort path with errors.Is.

func GetStackID

func GetStackID(cfg *config.Config) string

GetStackID reads the stored stack ID (exported for use in main)

func Init

func Init(cfg *config.Config, u *ui.UI, force bool, backendName string) error

Init initializes the stack configuration

func LocalIngressURL added in v0.8.0

func LocalIngressURL(cfg *config.Config) string

LocalIngressURL returns the best local HTTP base URL for the current stack. For k3d, it prefers the first host port mapped to container port 80 in the generated k3d config. For historical/default setups it falls back to http://obol.stack or http://obol.stack:8080.

func Purge

func Purge(cfg *config.Config, u *ui.UI, force, skipConfirm bool) error

Purge deletes the cluster config and optionally data

func SaveBackend added in v0.3.1

func SaveBackend(cfg *config.Config, name string) error

SaveBackend persists the backend choice

func Up

func Up(cfg *config.Config, u *ui.UI, wildcardDNS bool) error

Up starts the cluster using the configured backend

Types

type Backend added in v0.3.1

type Backend interface {
	// Name returns the backend identifier (e.g., "k3d", "k3s")
	Name() string

	// Init generates backend-specific cluster configuration files
	Init(cfg *config.Config, u *ui.UI, stackID string) error

	// Up creates or starts the cluster and returns kubeconfig contents
	Up(cfg *config.Config, u *ui.UI, stackID string) (kubeconfigData []byte, err error)

	// IsRunning returns true if the cluster is currently running
	IsRunning(cfg *config.Config, stackID string) (bool, error)

	// Down stops the cluster without destroying configuration or data
	Down(cfg *config.Config, u *ui.UI, stackID string) error

	// Destroy removes the cluster entirely (containers/processes)
	Destroy(cfg *config.Config, u *ui.UI, stackID string) error

	// DataDir returns the storage path for the local-path-provisioner.
	// For k3d this is "/data" (Docker volume mount point).
	// For k3s this is the absolute host path to cfg.DataDir.
	DataDir(cfg *config.Config) string

	// Prerequisites checks that required software/permissions are available
	Prerequisites(cfg *config.Config) error
}

Backend abstracts the Kubernetes cluster runtime (k3d, k3s)

func LoadBackend added in v0.3.1

func LoadBackend(cfg *config.Config) (Backend, error)

LoadBackend reads the persisted backend choice from .stack-backend file. Falls back to k3d if no file exists (backward compatibility).

func NewBackend added in v0.3.1

func NewBackend(name string) (Backend, error)

NewBackend creates a Backend by name

type K3dBackend added in v0.3.1

type K3dBackend struct{}

K3dBackend manages clusters via k3d (k3s inside Docker containers)

func (*K3dBackend) DataDir added in v0.3.1

func (b *K3dBackend) DataDir(cfg *config.Config) string

func (*K3dBackend) Destroy added in v0.3.1

func (b *K3dBackend) Destroy(cfg *config.Config, u *ui.UI, stackID string) error

func (*K3dBackend) Down added in v0.3.1

func (b *K3dBackend) Down(cfg *config.Config, u *ui.UI, stackID string) error

func (*K3dBackend) Init added in v0.3.1

func (b *K3dBackend) Init(cfg *config.Config, u *ui.UI, stackID string) error

func (*K3dBackend) IsRunning added in v0.3.1

func (b *K3dBackend) IsRunning(cfg *config.Config, stackID string) (bool, error)

func (*K3dBackend) Name added in v0.3.1

func (b *K3dBackend) Name() string

func (*K3dBackend) Prerequisites added in v0.3.1

func (b *K3dBackend) Prerequisites(cfg *config.Config) error

func (*K3dBackend) Up added in v0.3.1

func (b *K3dBackend) Up(cfg *config.Config, u *ui.UI, stackID string) ([]byte, error)

type K3sBackend added in v0.3.1

type K3sBackend struct{}

K3sBackend manages a standalone k3s cluster (bare-metal)

func (*K3sBackend) DataDir added in v0.3.1

func (b *K3sBackend) DataDir(cfg *config.Config) string

func (*K3sBackend) Destroy added in v0.3.1

func (b *K3sBackend) Destroy(cfg *config.Config, u *ui.UI, stackID string) error

func (*K3sBackend) Down added in v0.3.1

func (b *K3sBackend) Down(cfg *config.Config, u *ui.UI, stackID string) error

func (*K3sBackend) Init added in v0.3.1

func (b *K3sBackend) Init(cfg *config.Config, u *ui.UI, stackID string) error

func (*K3sBackend) IsRunning added in v0.3.1

func (b *K3sBackend) IsRunning(cfg *config.Config, stackID string) (bool, error)

func (*K3sBackend) Name added in v0.3.1

func (b *K3sBackend) Name() string

func (*K3sBackend) Prerequisites added in v0.3.1

func (b *K3sBackend) Prerequisites(cfg *config.Config) error

func (*K3sBackend) Up added in v0.3.1

func (b *K3sBackend) Up(cfg *config.Config, u *ui.UI, stackID string) ([]byte, error)

type LiveHostGateway added in v0.10.0

type LiveHostGateway struct {
	Name string
	PID  int
}

LiveHostGateway is a sell-inference offer with a still-running host gateway process (PID file present and alive). These survive `obol stack down` of the cluster and need a separate signal.

type LiveServiceOffer added in v0.10.0

type LiveServiceOffer struct {
	Namespace string
	Name      string
	Type      string
	Model     string
	Path      string
	Price     string
}

LiveServiceOffer is the subset of a ServiceOffer relevant to the safety check: enough to render the prompt without pulling in monetizeapi.

type LiveServices added in v0.10.0

type LiveServices struct {
	Offers   []LiveServiceOffer
	Gateways []LiveHostGateway
}

LiveServices captures the snapshot used by ConfirmRunningServicesLoss.

func DiscoverLiveServices added in v0.10.0

func DiscoverLiveServices(cfg *config.Config) LiveServices

DiscoverLiveServices snapshots cluster-side ServiceOffers in a payment-gate-ready state and host-side sell-inference gateways with alive PID files. Errors are intentionally swallowed: a discovery failure must not block `obol stack down`. A best-effort empty snapshot is returned so the caller falls through to "no prompt needed" only when we have positive evidence of nothing live.

func (LiveServices) Empty added in v0.10.0

func (s LiveServices) Empty() bool

Empty returns true when no live cluster services and no live host gateways were found. The caller treats this as "safe to proceed without prompting".

Jump to

Keyboard shortcuts

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