You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/cli/add_package.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: devspace add package
3
3
---
4
4
5
-
With `devspace add package`, you can easily add a package (helm chart) like mysql, nginx etc. to your devspace. To view all available packages run `devspace add package`.
5
+
With `devspace add package`, you can easily add a package (helm chart) like mysql, nginx etc. to a deployment in your devspace (Only works if deployment method is helm). To view all available packages run `devspace add package`.
6
6
7
7
The devspace add package command adds the helm chart as a dependency in the requirements.yaml and calls the internal `helm dependency update` (helm doesn't need to be installed), which downloads the chart and places it in the chart/charts folder. To remove the dependency call `devspace remove package PACKAGE`.
8
8
@@ -15,12 +15,13 @@ Usage:
15
15
Flags:
16
16
--app-version string App version
17
17
--chart-version string Chart version
18
+
-d, --deployment string The deployment name to use
18
19
-h, --help help for package
19
20
--skip-question Skips the question to show the readme in a browser
20
21
21
22
Examples:
22
23
devspace add package # Shows all available packages
23
24
devspace add package mysql # Adds the mysql chart to the devspace
24
25
devspace add package mysql --app-version=5.7.14 # Adds the mysql chart with app version 5.7.14 to the devspace
25
-
devspace add package mysql --chart-version=0.10.3 # Adds the mysql chart with chart version 0.10.3 to the devspace
26
+
devspace add package mysql --chart-version=0.10.3 -d devspace-default # Adds the mysql chart with chart version 0.10.3 to the devspace
Copy file name to clipboardExpand all lines: docs/docs/cli/down.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: devspace down
3
3
---
4
4
5
-
Run `devspace down` to shutdown your DevSpace.
5
+
Run `devspace down` to shutdown your DevSpace. Stops your DevSpace by removing the release via helm (if deployment method is helm) or by running kubectl delete over the manifests. If you want to remove all DevSpace related data from your project, use: devspace reset.
Copy file name to clipboardExpand all lines: docs/docs/cli/remove_package.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: devspace remove package
3
3
---
4
4
5
-
With `devspace remove package`, you can remove a package from the devspace.
5
+
With `devspace remove package`, you can remove a package from a devspace deployment.
6
6
7
7
`devspace remove package` deletes the specified packagename from the chart/requirements.yaml and executes the internal `helm dependency update` function.
8
8
@@ -11,6 +11,7 @@ Usage:
11
11
devspace remove package [flags]
12
12
13
13
Flags:
14
-
--all Remove all packages
15
-
-h, --help help for package
14
+
--all Remove all packages
15
+
-d, --deployment string The deployment name to use
0 commit comments