Core library for building Codesphere managed-service provider backends. Implement one interface; the library serves it over the Codesphere REST contract.
Not a runnable service. Start from managed-services-template for a working server with an example provider, Dockerfile, and CI.
go get github.com/codesphere-cloud/managed-services-libGo 1.26+.
type Provider[PlanParams, Config, Secrets, Details, UpdateParams any] interface {
Create(ctx context.Context, req CreateRequest[PlanParams, Config, Secrets]) error
List(ctx context.Context) ([]model.ServiceID, error)
GetStatus(ctx context.Context, ids []model.ServiceID) (map[model.ServiceID]ServiceStatus[PlanParams, Config, Details], error)
Update(ctx context.Context, req UpdateRequest[UpdateParams]) error
Delete(ctx context.Context, id model.ServiceID) error
}type CreateRequest[PlanParams, Config, Secrets any] struct {
ID model.ServiceID
TeamID int
CustomSubdomain *string
Plan PlanParams // contents of plan.parameters
Config Config
Secrets Secrets
RecoverFrom *model.RecoverFrom // set when restoring into a new service
}
type UpdateRequest[UpdateParams any] struct {
ID model.ServiceID
TeamID int
CustomSubdomain *string
Pause *bool // nil = leave as is
Params UpdateParams // your partial PATCH payload
}The split between the contract and your provider is visible in the signatures — you never declare the contract's own fields or envelopes yourself:
| The contract defines | You define |
|---|---|
id, teamId, customSubdomain — fields on the request struct |
PlanParams — contents of plan.parameters |
pause on update, and pause in the status response |
Config — contents of config |
the plan: {parameters: …} wrapper, unwrapped on the way in and re-wrapped on the way out |
Secrets — contents of secrets |
msId and retentionDays on backup requests |
Details — read-only status data (hostnames, ports, readiness) |
the {plan, config, details, pause} status envelope (ServiceStatus) |
UpdateParams — your partial PATCH payload |
| HTTP status codes and error mapping |
PATCH bodies are partial, so make UpdateParams fields pointers to tell "not sent" from "sent
empty".
Build status values with provider.NewServiceStatus(plan, config, details, pause, error)
Embed provider.Base for the shared dependencies (Kubernetes client, logger) and helpers.
Backups are an opt-in capability, generic over the provider's own backup-store schemas:
type Backups[BackupConfig, BackupSecrets any] interface {
TakeBackup(ctx context.Context, req BackupRequest[BackupConfig, BackupSecrets]) error
GetBackupStatus(ctx context.Context, req BackupRequest[BackupConfig, BackupSecrets]) (model.BackupStatus, error)
DeleteBackup(ctx context.Context, req BackupRequest[BackupConfig, BackupSecrets]) error
}BackupRequest carries BackupID, ServiceID (the msId field), TeamID, the store's Config
and Secrets, and RetentionDays. A provider that supports backups implements Backups and calls
RegisterBackupRoutes.
cfg, _ := config.Load()
k8s, _ := client.NewKubernetesClient(cfg.Kubeconfig)
logger := slog.Default()
routes := map[string]func(*gin.RouterGroup){
"mysvc": func(g *gin.RouterGroup) {
p := mysvc.NewProvider(k8s, logger)
provider.RegisterRoutes(g, p) // CRUD
provider.RegisterBackupRoutes(g, p) // backups
},
}
server, _ := api.NewServer(cfg, routes)
server.Run()RegisterRoutes mounts the CRUD endpoints under /api/v1/{name}; RegisterBackupRoutes adds the /backups endpoints for providers that implement Backups.
Some operations (backups, restores, migrations) are easier to run as one-shot Kubernetes Jobs, detached from the provider pod.
client.JobRunner(also onprovider.BaseasJobs) —Run/State/Delete/Replacea one-shot Job, with an optional owned credentials Secret injected viasecretKeyRef.provider.ServiceJob/ServiceJobSpec— build aJobSpecwith a consistent name (<operation>-<key>) and identity labels;BackupStatusFromJob/OperationStatusFromJobmap a Job's state to a status.
spec := provider.ServiceJobSpec(provider.ServiceJob{
Operation: provider.JobOpBackup, MsID: id, Key: backupID,
Image: img, Command: []string{"/backup"},
Env: env, Secrets: secrets, // whatever your image reads
ImagePullSecrets: []string{"regcred"}, // for a private registry
})
err := p.Jobs.Run(ctx, ns, spec)See the package docs and provider/servicejob_usage_test.go for details.
config.Load() reads these environment variables:
| Variable | Default | |
|---|---|---|
PORT |
8080 |
HTTP port |
API_KEY |
— | auth key (off if unset) |
KUBECONFIG |
— | kubeconfig path (in-cluster if unset) |
ENVIRONMENT |
development |
development / production |
This is framework config only. Provider-specific config (storage class, credentials, image versions) belongs in your provider's constructor.
make test, make lint, make mocks. make all runs everything.