HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

devspace — Develop, deploy, and debug applications inside Kubernetes. More information: <https://www.devspace.s

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandandcliapplicationsdeploydevspacedebugdevelop

Problem

How to use the devspace command: Develop, deploy, and debug applications inside Kubernetes. More information: <https://www.devspace.sh/docs/cli>.

Solution

devspace — Develop, deploy, and debug applications inside Kubernetes. More information: <https://www.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

Code Snippets

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}}

Context

tldr-pages: common/devspace

Revisions (0)

No revisions yet.