Skip to content

Commit b5adaf6

Browse files
docs(k8s-proxy): use ns.deployment form in branch-merge example (#860)
The `keploy cloud branch-merge` CLI flag is `--app`, which accepts either a UUID or a `namespace.deployment` identifier (same form `keploy upload test-set` and `keploy cloud replay` use for proxy apps). The previous example used `<app-id>` as the placeholder, implying UUID-only; switch to `<namespace>.<deployment>` so the k8s-proxy form is the headline example, and add a short note that both forms are accepted. Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent e7082ea commit b5adaf6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

versioned_docs/version-4.0.0/quickstart/k8s-proxy-developer-workflow.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,10 +193,12 @@ jobs:
193193
KEPLOY_API_KEY: ${{ secrets.KEPLOY_API_KEY }}
194194
run: |
195195
keploy cloud branch-merge \
196-
--app <app-id> \
196+
--app <namespace>.<deployment> \
197197
--branch ${{ github.head_ref }}
198198
```
199199

200+
`--app` accepts either a `namespace.deployment` identifier (k8s-proxy apps, e.g. `prod.orders`) or a raw app UUID (non-proxy apps). The same form you use for `keploy upload test-set` and `keploy cloud replay` works here.
201+
200202
`keploy cloud branch-merge` is idempotent—running it twice on an already-merged branch is a no-op. If the PR was closed without merging, the `if:` guard above keeps the job from firing.
201203

202204
---

0 commit comments

Comments
 (0)