1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-08 04:46:03 +02:00

devspace: add page (#16769)

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
This commit is contained in:
depgod 2025-06-07 17:35:08 +05:30 committed by GitHub
parent 33ce18ff1c
commit 5cbdaced29
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

36
pages/common/devspace.md Normal file
View 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`