Validate Your Platform
Use this guide after installing Floe to confirm that the platform is reachable and ready for a Data Engineer to run a data product.
Platform Health
Section titled “Platform Health”FLOE_NAMESPACE=${FLOE_NAMESPACE:-floe-dev}kubectl get pods -n "${FLOE_NAMESPACE}"helm status floe -n "${FLOE_NAMESPACE}"Expected outcome:
- Helm release status is
deployed. - Platform pods are
RunningorCompletedaccording to their workload type.
Service Access
Section titled “Service Access”Open service access using your normal Kubernetes access pattern. For local evaluation, port-forward the services you want to inspect.
RELEASE=${RELEASE:-floe}FLOE_NAMESPACE=${FLOE_NAMESPACE:-floe-dev}kubectl port-forward -n "${FLOE_NAMESPACE}" "svc/${RELEASE}-dagster-webserver" 3100:80Expected outcome:
- Dagster is reachable at
http://localhost:3100. - Platform service access uses your cluster access method, not a cloud-provider-specific Floe requirement.
The default chart uses Dagster service port 80. Contributor demo values override that service port to 3000, so contributor release-validation helpers may use a different port-forward.
The default Customer 360 validation manifest references floe-dev. DevPod/Flux
release-validation environments may deploy the same chart to floe-test.
Use the live namespace consistently in Kubernetes commands, for example:
FLOE_NAMESPACE=floe-test kubectl get pods -n floe-testFLOE_DEMO_NAMESPACE=floe-test make demo-customer-360-validateFLOE_DEMO_NAMESPACE changes the validator’s platform readiness namespace.
If your manifest command argv embeds -n floe-dev, also override the storage
and business validation commands for the live namespace.
Platform Evidence
Section titled “Platform Evidence”- Helm release is deployed.
- Dagster UI is reachable.
- Polaris catalog API is reachable.
- MinIO or configured object storage is reachable.
- Marquez API is reachable. In the current Floe chart, Marquez is API/admin
only; root
/returning404is not a platform failure when API endpoints pass. - Jaeger UI or configured trace backend is reachable.
- Loki API is reachable when log proof is in scope. Root
/returning404is not a platform failure;/readyand/loki/api/v1/query_rangeare the meaningful checks. - OTel collector is accepting traces.
- Data product runtime artifact path is defined.
Customer 360 Platform Evidence
Section titled “Customer 360 Platform Evidence”Run the Customer 360 validation path after the data product has been deployed and run:
This is the current alpha repo-checkout evidence validator; a packaged product command is not available yet. For platform workspaces, provide the equivalent evidence requirements and supported command for your environment.
make demo-customer-360-validateCurrent validator output keys, including alpha compatibility keys:
platform.readydagster.customer_360_runrun_control.namespacerun_control.runtime_contextrun_control.dagster.statusrun_control.dagster.job_namerun_control.dagster.api_reachablestorage.customer_360_outputsstorage.iceberg.customer_360_outputsobservability.logs.statusobservability.logs.countobservability.metrics.statusobservability.metrics.countobservability.traces.statusobservability.traces.countobservability.lineage.statusobservability.lineage.countobservability.run_idlineage.marquez_customer_360tracing.jaeger_customer_360business.customer_countbusiness.total_lifetime_value
The expanded alpha operability contract groups new validator evidence under
run_control.*, storage.*, business.*, and observability.* families.
Publish The Contract, Not A Chat Message
Section titled “Publish The Contract, Not A Chat Message”Publish the Platform Environment Contract after validation. The draft should already exist from the deployment step; validation turns it into the contract Data Engineers and CI can trust. At minimum it should include:
- Namespace and release name.
- Platform manifest reference.
- Approved plugins and compute choices.
- Runtime artifact registry convention.
- Dagster, Marquez, Jaeger, storage, and semantic/query service access patterns.
- Required promotion evidence.
- Support path.
Use examples/platform-environment-contracts/dev.yaml as the reference shape.