Skip to content

Commit f528617

Browse files
committed
chore: increase default up wait timeout
1 parent 04440fd commit f528617

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/command-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
- `okdev version`
1616
- `okdev init [--template basic|gpu|llm-stack] [--force]`
1717
- `okdev validate`
18-
- `okdev up [--wait-timeout 3m] [--dry-run]`
18+
- `okdev up [--wait-timeout 10m] [--dry-run]`
1919
- `okdev down [--delete-pvc] [--dry-run]`
2020
- `okdev status [--all] [--all-users]`
2121
- `okdev list [--all-namespaces] [--all-users]`
@@ -26,7 +26,7 @@
2626
- `okdev sync [--mode up|down|bi] [--background] [--dry-run]`
2727
- `okdev prune [--ttl-hours 72] [--all-namespaces] [--all-users] [--include-pvc] [--dry-run]`
2828

29-
### `okdev up [--wait-timeout 3m] [--dry-run]`
29+
### `okdev up [--wait-timeout 10m] [--dry-run]`
3030

3131
- Reconciles Pod/PVC resources, updates SSH config, initializes managed forwarding/sync, then exits.
3232
- tmux-backed persistent interactive shells are enabled by default.

internal/cli/up.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ func newUpCmd(opts *Options) *cobra.Command {
267267
},
268268
}
269269

270-
cmd.Flags().DurationVar(&waitTimeout, "wait-timeout", 3*time.Minute, "Wait timeout for pod readiness")
270+
cmd.Flags().DurationVar(&waitTimeout, "wait-timeout", 10*time.Minute, "Wait timeout for pod readiness")
271271
cmd.Flags().BoolVar(&dryRun, "dry-run", false, "Preview actions without applying resources")
272272
cmd.Flags().BoolVar(&tmux, "tmux", false, "Enable tmux persistent shell sessions in the dev container")
273273
cmd.Flags().BoolVar(&noTmux, "no-tmux", false, "Disable tmux persistent shell sessions for this pod")

0 commit comments

Comments
 (0)