Certification
This provider is certified: it passes every behavior in the BigFleet conformance program — the same bar every provider must clear — so you can trust it to create, configure, drain, and delete machines correctly under load, failure, and restart. You do not need to run anything here to use it in production; this page exists if you want to reproduce that verdict yourself.
“Certified” here means exactly what it means in the conformance program: the provider passes both the upstream authoritative baseline and this repo’s extension suite, with no failures and no skipped-as-failed behaviors. The certified run: baseline 25 tests (24 passed, 1 skipped), extension 93/93 passed, all 11 behavior areas green — VERDICT: CERTIFIED.
One command
make certify-scalewayThat target (hack/run-certify.sh scaleway) is fully credential-free. It:
- Resolves the bigfleet checkout that owns the authoritative contract — reusing
$BIGFLEET_SRCif set, otherwise cloning the exact version pinned in the provider’sgo.modinto.cache/bigfleet-src. - Builds
./bin/scalewayand boots it with--provider=certify --seed-count=256. It uses--use-fake-backend, so no Scaleway project is touched — the extension suite consumes a fresh machine per behavior, hence the generous seed. - Runs the upstream baseline (
test/conformance/in the bigfleet repo), then the extension suite (conformance/suite, build-taggedcertify), both dialing that one endpoint. - Prints
CERTIFIED: scaleway passed the upstream baseline + the extension suite— or fails non-zero on the first failing behavior, tearing the provider down.
Override the port with PORT=....
What the two suites check
The certification harness is a pure black-box gRPC client: it dials --addr and
uses only the wire RPCs of bigfleet.v1alpha1.CapacityProvider — no providerkit
imports, no process introspection. It detects what the provider supports through a
Capabilities probe and skips inapplicable behaviors with a reason (never
failing them).
Upstream baseline — the immovable, authoritative contract maintained in the bigfleet repo (25 tests; one is skipped-as-pass for the unclaimed spot profile). We run it verbatim and never modify it; it is the floor every certified provider clears.
Extension suite — the BigFleet conformance program: a frozen registry of 93 behaviors across 11 areas that deepens the baseline (stronger invariants under distinct, append-only ids). All 93 pass, all 11 areas green:
| Area | What it certifies |
|---|---|
| Lifecycle & state machine | residue-free round-trips; per-edge transitional, cluster, and host invariants |
| Transition matrix / errors | the out-of-position matrix, idempotent no-ops, code discipline, edge inputs |
| Fencing | fence-before-everything, per-(shard_id, machine_id) isolation, exhaustive (epoch, sequence) ordering |
| Concurrency & idempotency | N parallel retries collapse to one operation_id and exactly one effect |
| Metadata | shard_metadata verbatim echo, clear-on-drain, clean replace |
| Field shape & cost | top-level instance_type/zone/capacity_type; price ≥ 0; interruption_probability ∈ [0,1] |
| List, revision & pagination | filters, max_results, since_revision deltas, completeness at scale |
| Timeouts & failure | actuator error / timeout → FAILED + last_error; a late completion is discarded |
| Durability / restart | fence marks, idempotency, bindings, and inventory survive a kill + restart |
| Scale & soak | large inventory, churn-soak, latency budgets, parallel throughput |
| Property / fuzz | seeded-random lifecycle / fencing / metadata oracles |
The full, frozen registry of all 93 behaviors is the conformance program. This provider clears every one.
Profiles the Scaleway provider claims
The harness certifies a provider against the profiles it advertises; behaviors
outside a claimed profile skip-as-pass. The harness probes the provider’s
Capabilities over the wire and skips inapplicable behaviors with a reason (never
failing them).
- core — every provider (lifecycle, errors, fencing, concurrency, metadata, field-shape, list, property).
- cloud — implements
Delete(Idle → Speculative). The Instances substrate does (Delete=DeleteServer), so it claims cloud. - bare-metal —
DeleteisUnimplemented(servers return to a free pool). The Elastic Metal substrate claims this profile instead ofcloud. - spot — exposes SPOT capacity. Scaleway has no spot/preemptible market, so
the provider does not claim
spot; the SPOT-interruption_probability > 0behaviors skip-as-pass. See Pricing & interruption for why a zero interruption probability is the correct value here. - fault / durable / scale — failure→
FAILED, restart recovery, and scale lanes. These come fromproviderkitand pass by construction for any kit-based provider; run them through the report runner.
make certify-scaleway runs the credential-free core gate (baseline + the
black-box extension). The complete certification — every applicable lane — runs
through the bfconformance runner and emits a JUnit + JSON report with a verdict:
make report-scaleway PROFILE=core,cloud,fault,durable,scale# -> VERDICT: CERTIFIED, writes conformance-report/scaleway/{report.json,junit.xml}(For an Elastic Metal deployment, swap cloud for bare-metal in the profile
list.)
Certifying a real endpoint
make certify-scaleway certifies the fake backend in CI. To certify the provider
talking to real Scaleway, run it yourself against your project and point the
extension suite at it:
# 1. Boot the provider against real Scaleway (see Install & deploy / Configuration)../bin/scaleway \ --addr 127.0.0.1:9099 \ --substrate instances \ --image ubuntu_jammy \ --bootstrap-addr :9443 \ --bootstrap-endpoint https://127.0.0.1:9443 \ --bootstrap-tls-cert bootstrap.pem --bootstrap-tls-key bootstrap-key.pem \ --offerings ./offerings.json# SCW_ACCESS_KEY / SCW_SECRET_KEY / SCW_DEFAULT_PROJECT_ID and# BIGFLEET_BOOTSTRAP_SECRET from the environment
# 2. In another shell, run the extension suite against that endpoint.go -C conformance test -tags=certify -count=1 ./suite/... -target=127.0.0.1:9099A real run exercises the full lifecycle — CreateServer → wait-for-running →
agent Configure/Drain → DeleteServer — so the endpoint needs an API key with
the right permission sets (see Credentials) and
an image that installs the on-host agent. It will create and destroy real servers;
certify in a throwaway project and tear the servers down.
See also
- Conformance program — the behavior registry, profiles, and how to add a behavior.
- AWS certification — the same certification story for a spot-capable provider.
- Pricing & interruption — why
interruption_probabilityis a genuine zero on Scaleway. - Credentials & auth — the API key a real-endpoint certification run needs.