Weibo Docs
Reference

CLI Reference

The weibo control-plane CLI and the weibo-workflow runner.

weibo

weibo <command> [flags]

Every command except dashboard talks to the controller over REST and reads WEIBO_CONTROLLER and WEIBO_TOKEN (or -controller / -token).

CommandPurposeKey flags
dashboardStart controller + UIsee below
deployBuild, push, submit a manifest-file, -registry, -dockerfile, -context, -no-build, -no-push
jobsList jobs
status <id>Job detail, latest run, history
runs <id>All run attempts
logs <id>Container logs-tail 200, -follow
cancel <id>Graceful stop
restart <id>Resume-savepoint <label>
savepoint <id>Stop with a named savepoint-label (required)
delete <id>Remove the job-delete-data

weibo dashboard flags

FlagDefaultDescription
-addr:9000API + UI listen address
-imageweibo-runner:devRunner image for YAML jobs
-db./weibo-control.dbSQLite path
-backenddockerdocker or kubernetes
-auth-token$WEIBO_AUTH_TOKENShared bearer token
-auth-token-sha256$WEIBO_AUTH_TOKEN_SHA256Hashed tokens, readonly: / readwrite: prefixes
-allow-open-publicfalseAllow public bind without auth
-no-openfalseDon't open a browser
-reconcile3sReconcile interval
-max-jobs0Concurrent job cap (0 = resource-limited)
-default-job-cpu / -default-job-memory1 / 1GiCapacity math defaults
-grafana-url$WEIBO_GRAFANA_URLGrafana deep links
-log-level / -log-formatinfo / textLogging
-otel-endpoint$OTEL_EXPORTER_OTLP_ENDPOINTOTLP traces

Kubernetes only: -namespace, -kubeconfig, -pvc-size, -storage-class, -image-pull-secrets, -job-service-account, -job-runtime-class, -job-priority-class, -job-node-selector, -job-tolerations, -job-ttl-after-finished.

weibo-workflow

Runs a YAML/JSON workflow in the current process.

go run ./cmd/weibo-workflow --file workflow.yaml [flags]
FlagDescription
--fileWorkflow path (required)
--data-dirBase directory for state and checkpoints
--dry-runCompile only
--describePrint the compiled pipeline
--quietSuppress summary output
go run ./cmd/weibo-workflow --file examples/workflows/order-totals.yaml --dry-run --describe

On this page