mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-08 02:45:59 +02:00
devspace: add page (#16769)
Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
This commit is contained in:
parent
33ce18ff1c
commit
5cbdaced29
1 changed files with 36 additions and 0 deletions
36
pages/common/devspace.md
Normal file
36
pages/common/devspace.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# devspace
|
||||
|
||||
> Develop, deploy, and debug applications inside Kubernetes.
|
||||
> More information: <https://devspace.sh/docs/cli>.
|
||||
|
||||
- Initialize a new DevSpace project in the current directory:
|
||||
|
||||
`devspace init`
|
||||
|
||||
- Start development mode with port forwarding, file synchronization, and terminal access:
|
||||
|
||||
`devspace dev`
|
||||
|
||||
- Start development mode in a specific namespace:
|
||||
|
||||
`devspace dev {{[-n|--namespace]}} {{namespace}}`
|
||||
|
||||
- Deploy the project to Kubernetes:
|
||||
|
||||
`devspace deploy`
|
||||
|
||||
- Deploy the project with a specific profile:
|
||||
|
||||
`devspace deploy {{[-p|--profile]}} {{profile-name}}`
|
||||
|
||||
- Build all defined images:
|
||||
|
||||
`devspace build`
|
||||
|
||||
- Follow logs from a pod:
|
||||
|
||||
`devspace logs {{[-f|--follow]}}`
|
||||
|
||||
- Open the DevSpace UI in the browser:
|
||||
|
||||
`devspace ui`
|
Loading…
Add table
Reference in a new issue