docs: add verified quickstart - #20
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: ff83c7e61a
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| kubectl wait \ | ||
| --namespace supabase-quickstart \ | ||
| --for=jsonpath='{.status.phase}'=Running \ | ||
| supabaseproject/quickstart \ | ||
| --timeout 10m |
There was a problem hiding this comment.
Wait for component deployments before opening Studio
On a fresh cluster, this wait can finish before any component pod is ready: internal/controller/supabaseproject_controller.go:158-168 sets the phase to Running immediately after reconciliation, while internal/controller/reconciler/component.go:35-50 only creates or updates each Deployment without checking available replicas. The following Studio port-forward can therefore fail with no running pod while images are still pulling; wait for the component Deployments to roll out before proceeding.
Useful? React with 👍 / 👎.
| kubectl get supabaseproject quickstart \ | ||
| --namespace supabase-quickstart |
There was a problem hiding this comment.
Request the PHASE column in the get command
The packaged SupabaseProject CRD defines no additional printer columns, so this plain kubectl get command displays the default NAME and AGE columns rather than the documented NAME and PHASE result. The validation record uses an explicit -o custom-columns='NAME:.metadata.name,PHASE:.status.phase'; use that here as well so users can actually perform the stated status check.
Useful? React with 👍 / 👎.
Problem
Phase A has verified manifests, but no complete fresh cluster setup guide.
Solution
Add a quickstart using CloudNativePG, MinIO, and the released operator chart.
Major Changes
Part of #18