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/pages/configuration/deployments/helm/values.mdx
+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
@@ -65,7 +65,7 @@ DevSpace allows you to specify `values` (for inline values) and `valuesFiles` (f
65
65
66
66
67
67
## Update Image Tags
68
-
If the `updateImageTags` is set to `true`, DevSpace searches through the Helm values for this deployment (specified via `values` or `valuesFiles`) and tries to find any images in the Helm values that are also defined in the `images` section of the `devspace.yaml`. If DevSpace finds an image, it updates the image tag in the Helm values dynamically, so the tag in the Helm values matches the tag that DevSpace created during the most recent image building process for this image. Image tag updates make sure that your application will always be started with the most up-to-date image that DevSpace has built for you.
68
+
If the `updateImageTags`(defaults to true) is set to `true`, DevSpace searches through the Helm values for this deployment (specified via `values` or `valuesFiles`) and tries to find any images in the Helm values that are also defined in the `images` section of the `devspace.yaml`. If DevSpace finds an image, it updates the image tag in the Helm values dynamically, so the tag in the Helm values matches the tag that DevSpace created during the most recent image building process for this image. Image tag updates make sure that your application will always be started with the most up-to-date image that DevSpace has built for you.
Copy file name to clipboardExpand all lines: docs/pages/configuration/dev/connections/restart-helper.mdx
+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
@@ -7,7 +7,7 @@ import ConfigPartial from '../../_partials/v2beta1/dev/restartHelper.mdx'
7
7
8
8
DevSpace provides a small shell script that can used as container entrypoint (PID 1 process) to start the container instead of your actual container start command.
9
9
10
-
For example, if your entrypoint would be `pyhton main.py`, DevSpace would rewrite the container start command to:
10
+
For example, if your entrypoint would be `python main.py`, DevSpace would rewrite the container start command to:
Copy file name to clipboardExpand all lines: docs/pages/configuration/variables.mdx
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,18 +14,21 @@ While there is no need to explicitly define a config variable, it allows you to
14
14
15
15
## Built-In Variables
16
16
DevSpace provides a set of built-in variables:
17
-
-`${DEVSPACE_NAMESPACE}` contains the current namespace
17
+
18
18
-`${DEVSPACE_CONTEXT}` contains the name of the current kube-context (e.g. `minikube`)
19
-
-`${DEVSPACE_NAME}` contains the value of the `name` field of the current `devspace.yaml` file
19
+
-`${DEVSPACE_EXECUTABLE}` contains the path to the devspace binary used
20
20
-`${DEVSPACE_GIT_BRANCH}` contains the name of the local git branch that the user is currently on
21
21
-`${DEVSPACE_GIT_COMMIT}` contains the hash of the latest git commit in the current repository
22
+
-`${DEVSPACE_KUBECTL_EXECUTABLE}` contains the path to the kubectl binary
23
+
-`${DEVSPACE_NAME}` contains the value of the `name` field of the current `devspace.yaml` file
24
+
-`${DEVSPACE_NAMESPACE}` contains the current namespace
25
+
-`${DEVSPACE_PROFILE}` contains the profile that is currently active in DevSpace (e.g. the string provided via `-p / --profile` in a command such as `devspace dev -p my-profile`)
26
+
-`${DEVSPACE_RANDOM}` contains a random 6 character long string
22
27
-`${DEVSPACE_TIMESTAMP}` contains the current UNIX timestamp
23
-
-`${DEVSPACE_USER_HOME}` contains the path to the current user's home directory
24
28
-`${DEVSPACE_TMPDIR}` contains a path to a temporary folder that DevSpace cleans up after the `devspace` command terminates
25
-
-`${DEVSPACE_PROFILE}` contains the profile that is currently active in DevSpace (e.g. the string provided via `-p / --profile` in a command such as `devspace dev -p my-profile`)
29
+
-`${DEVSPACE_USER_HOME}` contains the path to the current user's home directory
26
30
-`${DEVSPACE_VERSION}` contains the version of DevSpace that is currently running
27
31
28
-
29
32
## Custom Variables
30
33
DevSpace lets you define custom varables inside `devspace.yaml` within the `vars` section.
0 commit comments