From 5cbdaced29f52c668ca30e6633fbd2c02753b58c Mon Sep 17 00:00:00 2001 From: depgod <23638290+depgod@users.noreply.github.com> Date: Sat, 7 Jun 2025 17:35:08 +0530 Subject: [PATCH] devspace: add page (#16769) Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> --- pages/common/devspace.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/devspace.md diff --git a/pages/common/devspace.md b/pages/common/devspace.md new file mode 100644 index 0000000000..609a5606ed --- /dev/null +++ b/pages/common/devspace.md @@ -0,0 +1,36 @@ +# devspace + +> Develop, deploy, and debug applications inside Kubernetes. +> More information: . + +- 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`