Type object
File match devspace.yaml
Schema URL https://catalog.lintel.tools/schemas/schemastore/devspace-yaml/latest.json
Source https://raw.githubusercontent.com/loft-sh/devspace/main/devspace-schema.json

Validate with Lintel

npx @lintel/lintel check
Type: object

Config defines the configuration

Properties

version string required

Version holds the config version. DevSpace will always convert older configs to the current latest config version, which makes it possible to use the newest DevSpace version also with older config versions.

name string required

Name specifies the name of the DevSpace project and uniquely identifies a project. DevSpace will not allow multiple active projects with the same name in the same Kubernetes namespace. If not provided, DevSpace will use the name of the current working directory.

imports Import[] | string

Imports merges specified config files into this one. This is very useful to split up your DevSpace configuration into multiple files and reuse those through git, a remote url or common local path.

functions object | string

Functions are POSIX functions that can be used within pipelines. Those functions can also be imported by imports.

pipelines object | object | object | string

Pipelines are the work blocks that DevSpace should execute when devspace dev, devspace build, devspace deploy or devspace purge is called. Pipelines are defined through a special POSIX script that allows you to use special commands such as create_deployments, start_dev, build_images etc. to signal DevSpace you want to execute a specific functionality. The pipelines dev, build, deploy and purge are special and will override the default functionality of the respective command if defined. All other pipelines can be either run via the devspace run-pipeline command or used within another pipeline through run_pipelines.

images object | string

Images holds configuration of how DevSpace should build images. By default, DevSpace will build all defined images. If you are using a custom pipeline, you can dynamically define which image is built at which time during the execution.

deployments object | string

Deployments holds configuration of how DevSpace should deploy resources to Kubernetes. By default, DevSpace will deploy all defined deployments. If you are using a custom pipeline, you can dynamically define which deployment is deployed at which time during the execution.

dev object | string

Dev holds development configuration. Each dev configuration targets a single pod and enables certain dev services on that pod or even rewrites it if certain changes are requested, such as adding an environment variable or changing the entrypoint. Dev allows you to:

  • sync local folders to the Kubernetes pod
  • port forward remote ports to your local computer
  • forward local ports into the Kubernetes pod
  • configure an ssh tunnel to the Kubernetes pod
  • proxy local commands to the container
  • restart the container on file changes
vars object | object | object | string

Vars are config variables that can be used inside other config sections to replace certain values dynamically

commands object | object | object | string

Commands are custom commands that can be executed via 'devspace run COMMAND'. These commands are run within a pseudo bash that also allows executing special commands such as run_watch or is_equal.

dependencies object | string

Dependencies are sub devspace projects that lie in a local folder or remote git repository that can be executed from within the pipeline. In contrast to imports, these projects pose as separate fully functional DevSpace projects that typically lie including source code in a different folder and can be used to compose a full microservice application that will be deployed by DevSpace. Each dependency name can only be used once and if you want to use the same project multiple times, make sure to use a different name for each of those instances.

pullSecrets object | string

PullSecrets are image pull secrets that will be created by devspace in the target namespace during devspace dev or devspace deploy. DevSpace will merge all defined pull secrets into a single one or the one specified.

require RequireConfig | string

Require defines what DevSpace, plugins and command versions are required to use this config and if a condition is not fulfilled, DevSpace will fail.

hooks HookConfig[] | string

Hooks are actions that are executed at certain points within the pipeline. Hooks are ordered and are executed in the order they are specified. They are deprecated and pipelines should be used instead.

localRegistry LocalRegistryConfig | string

LocalRegistry specifies the configuration for a local image registry

Definitions

Attach object
enabled boolean | string | string

Enabled can be used to enable attaching to a container

disableReplace boolean | string | string

DisableReplace prevents DevSpace from actually replacing the pod with modifications so that the pod starts up correctly.

disableTTY boolean | string | string

DisableTTY is used to tell DevSpace to not use a TTY connection for attaching

BandwidthLimits object

BandwidthLimits defines the struct for specifying the sync bandwidth limits

download integer | string | string

Download is the download limit in kilo bytes per second

upload integer | string | string

Upload is the upload limit in kilo bytes per second

BuildKitConfig object

BuildKitConfig tells the DevSpace CLI to

inCluster BuildKitInClusterConfig | string

InCluster if specified, DevSpace will use BuildKit to build the image within the cluster

preferMinikube boolean | string | string

PreferMinikube if false, will not try to use the minikube docker daemon to build the image

args string[] | string

Args are additional arguments to call docker buildx build with

command string[] | string

Command to override the base command to create a builder and build images. Defaults to ["docker", "buildx"]

BuildKitInClusterConfig object

BuildKitInClusterConfig holds the buildkit builder config

name string

Name is the name of the builder to use. If omitted, DevSpace will try to create or reuse a builder in the form devspace-$NAMESPACE

namespace string

Namespace where to create the builder deployment in. Defaults to the current active namespace.

rootless boolean | string | string

Rootless if enabled will create a rootless builder deployment.

image string

Image is the docker image to use for the BuildKit deployment

nodeSelector string

NodeSelector is the node selector to use for the BuildKit deployment

noCreate boolean | string | string

NoCreate. By default, DevSpace will try to create a new builder if it cannot be found. If this is true, DevSpace will fail if the specified builder cannot be found.

noRecreate boolean | string | string

NoRecreate. By default, DevSpace will try to recreate the builder if the builder configuration in the devspace.yaml differs from the actual builder configuration. If this is true, DevSpace will not try to do that.

noLoad boolean | string | string

NoLoad if enabled, DevSpace will not try to load the built image into the local docker daemon if skip push is defined

createArgs string[] | string

CreateArgs are additional args to create the builder with.

ChartConfig object

ChartConfig defines the helm chart options

name string

Name is the name of the helm chart to deploy. Can also be a local path or an oci url

version string

Version is the version of the helm chart to deploy

repo string

RepoURL is the url of the repo to deploy the chart from

username string

Username is the username to authenticate to the chart repo. When using an OCI chart, used for registry auth

password string

Password is the password to authenticate to the chart repo, When using an OCI chart, used for registry auth

path string

Path is the local path where DevSpace can find the artifact. This option is mutually exclusive with the git option.

git string

Git is the remote repository to download the artifact from. You can either use https projects or ssh projects here, but need to make sure git can pull the project. This option is mutually exclusive with the path option.

subPath string

SubPath is a path within the git repository where the artifact lies in

branch string

Branch is the git branch to pull

tag string

Tag is the tag to pull

revision string

Revision is the git revision to pull

cloneArgs string[] | string

CloneArgs are additional arguments that should be supplied to the git CLI

disableShallow boolean | string | string

DisableShallow can be used to turn off shallow clones as these are the default used by devspace

disablePull boolean | string | string

DisablePull will disable pulling every time DevSpace is reevaluating this source

CommandConfig object

CommandConfig defines the command specification

command string required

Command is the command that should be executed. For example: 'echo 123'

name string

Name is the name of a command that is used via devspace run NAME

section string

Section can be used to group similar commands together in devspace list commands

args string[] | string

Args are optional and if defined, command is not executed within a shell and rather directly.

appendArgs boolean | string | string

AppendArgs will append arguments passed to the DevSpace command automatically to the specified command.

description string

Description describes what the command is doing and can be seen in devspace list commands

internal boolean | string | string

Internal commands are not show in list and are usable through run_command

after string

After is executed after the command was run. It is executed also when the command was interrupted which will set the env variable COMMAND_INTERRUPT to true as well as when the command errored which will set the error string to COMMAND_ERROR.

CustomConfig object

CustomConfig tells the DevSpace CLI to build with a custom build script

command string

Command to execute to build the image. You can use ${runtime.images.my-image.image} and ${runtime.image.my-image.tag} to reference the image and tag that should get built.

onChange string[] | string

OnChange will determine when the command should be rerun

DependencyConfig object

DependencyConfig defines the devspace dependency

name string

Name is used internally

disabled boolean | string | string

Disabled excludes this dependency from variable resolution and pipeline runs

path string

Path is the local path where DevSpace can find the artifact. This option is mutually exclusive with the git option.

git string

Git is the remote repository to download the artifact from. You can either use https projects or ssh projects here, but need to make sure git can pull the project. This option is mutually exclusive with the path option.

subPath string

SubPath is a path within the git repository where the artifact lies in

branch string

Branch is the git branch to pull

tag string

Tag is the tag to pull

revision string

Revision is the git revision to pull

cloneArgs string[] | string

CloneArgs are additional arguments that should be supplied to the git CLI

disableShallow boolean | string | string

DisableShallow can be used to turn off shallow clones as these are the default used by devspace

disablePull boolean | string | string

DisablePull will disable pulling every time DevSpace is reevaluating this source

pipeline string

Pipeline is the pipeline to deploy by default. Defaults to 'deploy'

Default: "deploy"
vars object | string

Vars are variables that should be passed to the dependency

overwriteVars boolean | string | string

OverwriteVars specifies if DevSpace should pass the parent variables to the dependency

ignoreDependencies boolean | string | string

IgnoreDependencies defines if dependencies of the dependency should be excluded

namespace string

Namespace specifies the namespace this dependency should be deployed to

DeploymentConfig object

DeploymentConfig defines the configuration how the devspace should be deployed

name string

Name of the deployment

helm HelmConfig | string

Helm tells DevSpace to deploy this deployment via helm

kubectl KubectlConfig | string

Kubectl tells DevSpace to deploy this deployment via kubectl or kustomize

updateImageTags boolean | string | string

UpdateImageTags lets you define if DevSpace should update the tags of the images defined in the images section with their most recent built tag.

Default: true
namespace string

Namespace where to deploy this deployment

DevContainer object

DevContainer holds options for dev services that should get started within a certain container of the selected pod

container string

Container is the container name these services should get started.

arch string

Target Container architecture to use for the devspacehelper (currently amd64 or arm64). Defaults to amd64, but devspace tries to find out the architecture by itself by looking at the node this container runs on.

devImage string

DevImage is the image to use for this container and will replace the existing image if necessary.

command string[] | string

Command can be used to override the entrypoint of the container

args string[] | string

Args can be used to override the args of the container

workingDir string

WorkingDir can be used to override the working dir of the container

env EnvVar[] | string

Env can be used to add environment variables to the container. DevSpace will not replace existing environment variables if an environment variable is defined here.

resources PodResources | string

Resources can be used to override the resource definitions of the container

reversePorts PortMapping[] | string

ReversePorts are port mappings to make local ports available inside the container

sync SyncConfig[] | string

Sync allows you to sync certain local paths with paths inside the container

persistPaths PersistentPath[] | string

PersistPaths allows you to persist certain paths within this container with a persistent volume claim

terminal Terminal | string

Terminal allows you to tell DevSpace to open a terminal with screen support to this container

logs Logs | string

Logs allows you to tell DevSpace to stream logs from this container to the console

attach Attach | string

Attach allows you to tell DevSpace to attach to this container

ssh SSH | string

SSH allows you to create an SSH tunnel to this container

proxyCommands ProxyCommand[] | string

ProxyCommands allow you to proxy certain local commands to the container

restartHelper RestartHelper | string

RestartHelper holds restart helper specific configuration. The restart helper is used to delay starting of the container and restarting it and is injected via an annotation in the replaced pod.

DevPod object

DevPod holds configurations for selecting a pod and starting dev services for that pod

name string

Name of the dev configuration

imageSelector string

ImageSelector to select a pod

labelSelector object | string

LabelSelector to select a pod

namespace string

Namespace where to select the pod

container string

Container is the container name these services should get started.

arch string

Target Container architecture to use for the devspacehelper (currently amd64 or arm64). Defaults to amd64, but devspace tries to find out the architecture by itself by looking at the node this container runs on.

devImage string

DevImage is the image to use for this container and will replace the existing image if necessary.

command string[] | string

Command can be used to override the entrypoint of the container

args string[] | string

Args can be used to override the args of the container

workingDir string

WorkingDir can be used to override the working dir of the container

env EnvVar[] | string

Env can be used to add environment variables to the container. DevSpace will not replace existing environment variables if an environment variable is defined here.

resources PodResources | string

Resources can be used to override the resource definitions of the container

reversePorts PortMapping[] | string

ReversePorts are port mappings to make local ports available inside the container

sync SyncConfig[] | string

Sync allows you to sync certain local paths with paths inside the container

persistPaths PersistentPath[] | string

PersistPaths allows you to persist certain paths within this container with a persistent volume claim

terminal Terminal | string

Terminal allows you to tell DevSpace to open a terminal with screen support to this container

logs Logs | string

Logs allows you to tell DevSpace to stream logs from this container to the console

attach Attach | string

Attach allows you to tell DevSpace to attach to this container

ssh SSH | string

SSH allows you to create an SSH tunnel to this container

proxyCommands ProxyCommand[] | string

ProxyCommands allow you to proxy certain local commands to the container

restartHelper RestartHelper | string

RestartHelper holds restart helper specific configuration. The restart helper is used to delay starting of the container and restarting it and is injected via an annotation in the replaced pod.

ports PortMapping[] | string

Ports defines port mappings from the remote pod that should be forwarded to your local computer

persistenceOptions PersistenceOptions | string

PersistenceOptions are additional options for persisting paths within this pod

patches PatchConfig[] | string

Patches are additional changes to the pod spec that should be applied

open OpenConfig[] | string

Open defines urls that should be opened as soon as they are reachable

containers object | string
DockerConfig object

DockerConfig tells the DevSpace CLI to build with Docker on Minikube or on localhost

disableFallback boolean | string | string

DisableFallback allows you to turn off kaniko building if docker isn't installed

preferMinikube boolean | string | string

PreferMinikube allows you to turn off using the minikube docker daemon if the minikube context is used.

useCli boolean | string | string

UseCLI specifies if DevSpace should use the docker cli for building

args string[] | string

Args are additional arguments to pass to the docker cli

EnvVar object
name string required

Name of the environment variable

value string required

Value of the environment variable

HelmConfig object

HelmConfig defines the specific helm options used during deployment

releaseName string

ReleaseName of the helm configuration

chart ChartConfig | string

Chart holds the chart configuration and where DevSpace can find the chart

values object | string

Values are additional values that should get passed to deploying this chart

valuesFiles string[] | string

ValuesFiles are additional files that hold values for deploying this chart

displayOutput boolean | string | string

DisplayOutput allows you to display the helm output to the console

upgradeArgs string[] | string

UpgradeArgs are additional arguments to pass to helm upgrade

templateArgs string[] | string

TemplateArgs are additional arguments to pass to helm template

disableDependencyUpdate boolean | string | string

DisableDependencyUpdate disables helm dependencies update, default to false

HookConfig object

HookConfig defines a hook

events string[] | string required

Events are the events when the hook should be executed

name string

Name is the name of the hook

disabled boolean | string | string

Disabled can be used to disable the hook

command string

Command is the base command that is either executed locally or in a remote container. Command is mutually exclusive with other hook actions. In the case this is defined together with where.container, DevSpace will until the target container is running and only then execute the command. If the container does not start in time, DevSpace will fail.

args string[] | string

Args are additional arguments passed together with the command to execute.

os string

If an operating system is defined, the hook will only be executed for the given os. All supported golang OS types are supported and multiple can be combined with ','.

upload HookSyncConfig | string

If Upload is specified, DevSpace will upload certain local files or folders into a remote container.

download HookSyncConfig | string

Same as Upload, but with this option DevSpace will download files or folders from a remote container.

logs HookLogsConfig | string

If logs is defined will print the logs of the target container. This is useful for containers that should finish like init containers or job pods. Otherwise this hook will never terminate.

wait HookWaitConfig | string

If wait is defined the hook will wait until the matched pod or container is running or is terminated with a certain exit code.

background boolean | string | string

If true, the hook will be executed in the background.

silent boolean | string | string

If true, the hook will not output anything to the standard out of DevSpace except for the case when the hook fails, where DevSpace will show the error including the captured output streams of the hook.

container HookContainer | string

Container specifies where the hook should be run. If this is omitted DevSpace expects a local command hook.

HookContainer object

HookContainer defines how to select one or more containers to execute a hook in

labelSelector object | string

LabelSelector to select a container

pod string

Pod name to use

namespace string

Namespace to use

imageSelector string

ImageSelector to select a container

containerName string

ContainerName to use

wait boolean | string | string

Wait can be used to disable waiting

timeout integer | string | string

Timeout is how long to wait (in seconds) for the container to start. Default is 150 seconds.

Default: 150
once boolean | string | string

Once only executes an hook once in the container until it is restarted

HookLogsConfig object

HookLogsConfig defines a hook logs config

tailLines integer | string | string

If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container

HookSyncConfig object

HookSyncConfig defines a hook upload config

localPath string

LocalPath to sync files from

containerPath string

ContainerPath to sync files to

HookWaitConfig object

HookWaitConfig defines a hook wait config

running boolean | string | string

If running is true, will wait until the matched containers are running. Can be used together with terminatedWithCode.

terminatedWithCode integer | string | string

If terminatedWithCode is not nil, will wait until the matched containers are terminated with the given exit code. If the container has exited with a different exit code, the hook will fail. Can be used together with running.

timeout integer | string | string

The amount of seconds to wait until the hook will fail. Defaults to 150 seconds.

Image object

Image defines the image specification

image string required

Image is the complete image name including registry and repository for example myregistry.com/mynamespace/myimage

name string

Name of the image, will be filled automatically

tags string[] | string

Tags is an array that specifies all tags that should be build during the build process. If this is empty, devspace will generate a random tag

dockerfile string

Dockerfile specifies a path (relative or absolute) to the dockerfile. Defaults to ./Dockerfile.

Default: "./Dockerfile"
context string

Context is the context path to build with. Defaults to the current working directory

Default: "./"
entrypoint string[] | string

Entrypoint specifies an entrypoint that will be appended to the dockerfile during image build in memory. Example: ["sleep", "99999"]

cmd string[] | string

Cmd specifies the arguments for the entrypoint that will be appended during build in memory to the dockerfile

appendDockerfileInstructions string[] | string

AppendDockerfileInstructions are instructions that will be appended to the Dockerfile that is build at the current build target and are appended before the entrypoint and cmd instructions

buildArgs object | string

BuildArgs are the build args that are to the build

target string

Target is the target that should get used during the build. Only works if the dockerfile supports this

network string

Network is the network that should get used to build the image

rebuildStrategy string

RebuildStrategy is used to determine when DevSpace should rebuild an image. By default, devspace will rebuild an image if one of the following conditions is true:

  • The dockerfile has changed
  • The configuration within the devspace.yaml for the image has changed
  • A file within the docker context (excluding .dockerignore rules) has changed This option is ignored for custom builds.
Values: "default" "always" "ignoreContextChanges"
skipPush boolean | string | string

SkipPush will not push the image to a registry if enabled. Only works if docker or buildkit is chosen as build method

createPullSecret boolean | string | string

CreatePullSecret specifies if a pull secret should be created for this image in the target namespace. Defaults to true

buildKit BuildKitConfig | string

BuildKit if buildKit is specified, DevSpace will build the image either in-cluster or locally with BuildKit

docker DockerConfig | string

Docker if docker is specified, DevSpace will build the image using the local docker daemon

kaniko KanikoConfig | string

Kaniko if kaniko is specified, DevSpace will build the image in-cluster with kaniko

custom CustomConfig | string

Custom if custom is specified, DevSpace will build the image with the help of a custom script.

Import object

Import specifies the source of the devspace config to merge

enabled boolean | string | string

Enabled specifies if the given import should be enabled

path string

Path is the local path where DevSpace can find the artifact. This option is mutually exclusive with the git option.

git string

Git is the remote repository to download the artifact from. You can either use https projects or ssh projects here, but need to make sure git can pull the project. This option is mutually exclusive with the path option.

subPath string

SubPath is a path within the git repository where the artifact lies in

branch string

Branch is the git branch to pull

tag string

Tag is the tag to pull

revision string

Revision is the git revision to pull

cloneArgs string[] | string

CloneArgs are additional arguments that should be supplied to the git CLI

disableShallow boolean | string | string

DisableShallow can be used to turn off shallow clones as these are the default used by devspace

disablePull boolean | string | string

DisablePull will disable pulling every time DevSpace is reevaluating this source

KanikoAdditionalMount object

KanikoAdditionalMount tells devspace how the additional mount of the kaniko pod should look like

secret KanikoAdditionalMountSecret | string

The secret that should be mounted

configMap KanikoAdditionalMountConfigMap | string

The configMap that should be mounted

readOnly boolean | string | string

Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. +optional

mountPath string

Path within the container at which the volume should be mounted. Must not contain ':'.

subPath string

Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). +optional

KanikoAdditionalMountConfigMap object
name string

Name of the configmap +optional

If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. +optional

defaultMode integer | string | string

Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. +optional

KanikoAdditionalMountKeyToPath object
key string required

The key to project.

path string required

The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.

mode integer | string | string

Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. +optional

KanikoAdditionalMountSecret object
name string required

Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret +optional

If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. +optional

defaultMode integer | string | string

Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. +optional

KanikoConfig object

KanikoConfig tells the DevSpace CLI to build with Docker on Minikube or on localhost

cache boolean | string | string

Cache tells DevSpace if a cache repository should be used. defaults to false

snapshotMode string

SnapshotMode tells DevSpace which snapshot mode kaniko should use. defaults to time

image string

Image is the image name of the kaniko pod to use

initImage string

InitImage to override the init image of the kaniko pod

args string[] | string

Args for additional arguments that should be passed to kaniko

command string[] | string

Command to replace the starting command for the kaniko container

namespace string

Namespace is the namespace where the kaniko pod should be run

insecure boolean | string | string

Insecure allows pushing to insecure registries

pullSecret string

PullSecret is the pull secret to mount by default

skipPullSecretMount boolean | string | string

SkipPullSecretMount will skip mounting the pull secret

nodeSelector object | string

NodeSelector is the node selector to use for the kaniko pod

tolerations Toleration[] | string

Tolerations is a tolerations list to use for the kaniko pod

serviceAccount string

ServiceAccount the service account to use for the kaniko pod

generateName string

GenerateName is the optional prefix that will be set to the generateName field of the build pod

annotations object | string

Annotations are extra annotations that will be added to the build pod

labels object | string

Labels are extra labels that will be added to the build pod

initEnv object | string

InitEnv are extra environment variables that will be added to the build init container

env object | string

Env are extra environment variables that will be added to the build kaniko container Will populate the env.value field.

envFrom object | string

EnvFrom are extra environment variables from configmap or secret that will be added to the build kaniko container Will populate the env.valueFrom field.

additionalMounts KanikoAdditionalMount[] | string

AdditionalMounts are additional mounts that will be added to the build pod

resources PodResources | string

Resources are the resources that should be set on the kaniko pod

KubectlConfig object

KubectlConfig defines the specific kubectl options used during deployment

manifests string[] | string

Manifests is a list of files or folders that will be deployed by DevSpace using kubectl or kustomize

applyArgs string[] | string

ApplyArgs are extra arguments for kubectl apply

createArgs string[] | string

CreateArgs are extra arguments for kubectl create which will be run before kubectl apply

kubectlBinaryPath string

KubectlBinaryPath is the optional path where to find the kubectl binary

inlineManifest string

InlineManifests is a block containing the manifest to deploy

kustomize boolean | string | string

Kustomize can be used to enable kustomize instead of kubectl

kustomizeArgs string[] | string

KustomizeArgs are extra arguments for kustomize build which will be run before kubectl apply

kustomizeBinaryPath string

KustomizeBinaryPath is the optional path where to find the kustomize binary

patches PatchTarget[] | string

Patches are additional changes to the pod spec that should be applied

LocalRegistryConfig object

LocalRegistryConfig holds the configuration of the local image registry

enabled boolean | string | string

Enabled enables the local registry for pushing images. When unset the local registry will be used as a fallback if there are no push permissions for the registry. When true the local registry will always be used. When false the local registry will never be used.

localbuild boolean | string | string

LocalBuild enables use of local docker builder instead of building in the cluster

namespace string

Namespace where the local registry is deployed. Default is the current context's namespace

name string

Name of the deployment and service of the local registry. Default is registry

image string

Image of the local registry. Default is registry:2.8.1

buildKitImage string

BuildKitImage of the buildkit sidecar. Default is moby/buildkit:master-rootless

port integer | string | string

Port that the registry image listens on. Default is 5000

persistence LocalRegistryPersistence | string

Persistence settings for the local registry

LocalRegistryPersistence object

LocalRegistryPersistence configures persistence settings for the local registry

enabled boolean | string | string

Enable enables persistence for the local registry

size string

Size of the persistent volume for local docker registry storage. Default is 5Gi

storageClassName string

StorageClassName of the persistent volume. Default is your cluster's configured default storage class

Logs object
enabled boolean | string | string

Enabled can be used to enable printing container logs

lastLines integer | string | string

LastLines is the amount of lines to print of the running container initially

OpenConfig object

OpenConfig defines what to open after services have been started

url string

URL is the url to open in the browser after it is available

PatchConfig object

PatchConfig describes a config patch and how it should be applied

op string required

Operation is the path operation to do. Can be either replace, add or remove

path string required

Path is the config path to apply the patch to

value

Value is the value to use for this patch.

PatchTarget object

PatchTarget describes a config patch and how it should be applied

target Target | string required

Target describes where to apply a config patch

op string required

Operation is the path operation to do. Can be either replace, add or remove

path string required

Path is the config path to apply the patch to

value

Value is the value to use for this patch.

PersistenceOptions object

PersistenceOptions are general persistence options DevSpace should use for all persistent paths within a single dev configuration

size string

Size is the size of the created persistent volume in Kubernetes size notation like 5Gi

storageClassName string

StorageClassName is the storage type DevSpace should use for this persistent volume

accessModes string[] | string

AccessModes are the access modes DevSpace should use for the persistent volume

readOnly boolean | string | string

ReadOnly specifies if the volume should be read only

name string

Name is the name of the PVC that should be created. If a PVC with that name already exists, DevSpace will use that PVC instead of creating one.

PersistentPath object

PersistentPath holds options to configure persistence for DevSpace

path string

Path is the container path that should get persisted. By default, DevSpace will create an init container that will copy over the contents of this folder from the existing image.

volumePath string

VolumePath is the sub path on the volume that is mounted as persistent volume for this path

readOnly boolean | string | string

ReadOnly will make the persistent path read only to the user

skipPopulate boolean | string | string

SkipPopulate will not create an init container to copy over the existing contents if true

initContainer PersistentPathInitContainer | string

InitContainer holds additional options for the persistent path init container

PersistentPathInitContainer object

PersistentPathInitContainer defines additional options for the persistent path init container

resources PodResources | string

Resources are the resources used by the persistent path init container

Pipeline object

Pipeline defines what DevSpace should do.

name string

Name of the pipeline, will be filled automatically

Values: "dev" "deploy" "build" "purge" ".*"
run string

Run is the actual shell command that should be executed during this pipeline

flags PipelineFlag[] | string

Flags are extra flags that can be used for running the pipeline via devspace run-pipeline.

continueOnError boolean | string | string

ContinueOnError will not fail the whole job and pipeline if a call within the step fails.

PipelineFlag object

PipelineFlag defines an extra pipeline flag

name string

Name is the name of the flag

short string

Short is optional and is the shorthand name for this flag. E.g. 'g' converts to '-g'

type string

Type is the type of the flag. Defaults to bool

Values: "bool" "int" "string" "stringArray"
default

Default is the default value for this flag

description string

Description is the description as shown in devspace run-pipeline my-pipe -h

PodResources object

PodResources describes the resources section of the started kaniko pod

requests object | string

Requests are the requests part of the resources

limits object | string

Limits are the limits part of the resources

PortMapping object

PortMapping defines the ports for a PortMapping

port string required

Port is a port mapping that maps the localPort:remotePort. So if you port forward the remote port will be available at the local port. If you do reverse port forwarding, the local port will be available at the remote port in the container. If only port is specified, local and remote port are the same.

bindAddress string

BindAddress is the address DevSpace should listen on. Optional and defaults to localhost.

ProxyCommand object
gitCredentials boolean | string | string

GitCredentials configures a git credentials helper inside the container that proxies local git credentials

command string

Command is the name of the command that should be available in the remote container. DevSpace will create a small script for that inside the container that redirect command execution to the local computer.

localCommand string

LocalCommand can be used to run a different command than specified via the command option. By default, this will be assumed to be the same as command.

skipContainerEnv boolean | string | string

SkipContainerEnv will not forward the container environment variables to the local command

env object | string

Env are extra environment variables to set for the command

PullSecretConfig object

PullSecretConfig defines a pull secret that should be created by DevSpace

name string

Name is the pull secret name to deploy

registry string

The registry to create the image pull secret for. Empty string == docker hub e.g. gcr.io

username string

The username of the registry. If this is empty, devspace will try to receive the auth data from the local docker

password string

The password to use for the registry. If this is empty, devspace will try to receive the auth data from the local docker

email string

The optional email to use

secret string

The secret to create

serviceAccounts string[] | string

The service account to add the secret to

RequireCommand object
name string required

Name is the name of the command that should be installed

versionArgs string[] | string

VersionArgs are the arguments to retrieve the version of the command

versionRegEx string

VersionRegEx is the regex that is used to parse the version

version string

Version constraint of the command that should be installed

RequireConfig object
devspace string

DevSpace specifies the DevSpace version constraint that is needed to use this config

commands RequireCommand[] | string

Commands specifies an array of commands that need to be installed locally to use this config

plugins RequirePlugin[] | string

Plugins specifies an array of plugins that need to be installed locally

RequirePlugin object
name string required

Name of the plugin that should be installed

version string required

Version constraint of the plugin that should be installed

RestartHelper object
path string

Path defines the path to the restart helper that might be used if certain config options are enabled

inject boolean | string | string

Inject signals DevSpace to inject the restart helper

SSH object
enabled boolean | string | string

Enabled can be used to enable the ssh server within the container. By default, DevSpace will generate the required keys and create an entry in your ~/.ssh/config for this container that can be used via ssh dev-config-name.dev-project-name.devspace

localHostname string

LocalHostname is the local ssh host to write to the ~/.ssh/config

localPort integer | string | string

LocalPort is the local port to forward from, if empty will be random

remoteAddress string

RemoteAddress is the address to listen to inside the container

useInclude boolean | string | string

UseInclude tells DevSpace to use a the file ~/.ssh/devspace_config for its ssh entries. DevSpace will also create an import for its own entries inside ~/.ssh/config, this is a cleaner way, but unfortunately not all SSH clients support this.

SyncConfig object

SyncConfig defines the paths for a SyncFolder

path string

Path is the path to sync. This can be defined in the form localPath:remotePath. You can also use '.' to specify either the local or remote working directory. This is valid for example: .:.

excludePaths string[] | string

ExcludePaths is an array of file patterns in gitignore format to exclude.

excludeFile string

ExcludeFile loads the file patterns to exclude from a file.

downloadExcludePaths string[] | string

DownloadExcludePaths is an array of file patterns in gitignore format to exclude from downloading

downloadExcludeFile string

DownloadExcludeFile loads the file patterns to exclude from downloading from a file.

uploadExcludePaths string[] | string

UploadExcludePaths is an array of file patterns in gitignore format to exclude from uploading

uploadExcludeFile string

UploadExcludeFile loads the file patterns to exclude from uploading from a file.

startContainer boolean | string | string

StartContainer will start the container after initial sync is done. This will inject a devspacehelper into the pod and you need to define dev.*.command for this to work.

onUpload SyncOnUpload | string

OnUpload can be used to execute certain commands on uploading either in the container or locally as well as restart the container after a file changed has happened.

initialSync string

InitialSync defines the initial sync strategy to use when this sync starts. Defaults to mirrorLocal

waitInitialSync boolean | string | string

WaitInitialSync can be used to tell DevSpace to not wait until the initial sync is done

initialSyncCompareBy string

InitialSyncCompareBy defines if the sync should only compare by the given type. Either mtime or size are possible

disableDownload boolean | string | string

DisableDownload will disable downloading completely

disableUpload boolean | string | string

DisableUpload will disable uploading completely

bandwidthLimits BandwidthLimits | string

BandwidthLimits can be used to limit the amount of bytes that are transferred by DevSpace with this sync configuration

polling boolean | string | string

Polling will tell the remote container to use polling instead of inotify

noWatch boolean | string | string

NoWatch will terminate the sync after the initial sync is done

file boolean | string | string

File signals DevSpace that this is a single file that should get synced instead of a whole directory

SyncExec object
name string

Name is the name to show for this exec in the logs

command string

Command is the command to execute. If no args are specified this is executed within a shell.

args string[] | string

Args are arguments to pass to the command

failOnError boolean | string | string

FailOnError specifies if the sync should fail if the command fails

local boolean | string | string

Local specifies if the command should be executed locally instead of within the container

once boolean | string | string

Once executes this command only once in the container's life. Can be used to initialize a container before starting it, but after everything was synced.

onChange string[] | string

OnChange is an array of file patterns that trigger this command execution

SyncOnUpload object

SyncOnUpload defines the struct for the command that should be executed when files / folders are uploaded

restartContainer boolean | string | string

If true restart container will try to restart the container after a change has been made. Make sure that images.*.injectRestartHelper is enabled for the container that should be restarted or the devspace-restart-helper script is present in the container root folder.

exec SyncExec[] | string

Exec will execute the given commands in order after a sync operation

Target object

Target describes where to apply a config patch

apiVersion string required

ApiVersion is the Kubernetes api of the target resource

kind string required

Kind is the kind of the target resource (eg: Deployment, Service ...)

name string required

Name is the name of the target resource

Terminal object

Terminal describes the terminal options

command string

Command is the command that should be executed on terminal start. This command is executed within a shell.

workDir string

WorkDir is the working directory that is used to execute the command in.

enabled boolean | string | string

If enabled is true, DevSpace will use the terminal. Can be also used to disable the terminal if set to false. DevSpace makes sure that within a pipeline only one dev configuration can open a terminal at a time and subsequent dev terminals will fail.

disableReplace boolean | string | string

DisableReplace tells DevSpace to not replace the pod or adjust its settings to make sure the pod is sleeping when opening a terminal

disableScreen boolean | string | string

DisableScreen will disable screen which is used by DevSpace by default to preserve sessions if connections interrupt or the session is lost.

disableTTY boolean | string | string

DisableTTY will disable a tty shell for terminal command execution

Toleration object
Key string required
Operator string required
Value string required
Effect string required
TolerationSeconds integer | string | string required
Variable object

Variable describes the var definition

name string

Name is the name of the variable

value string | integer | boolean

Value is a shortcut for using source: none and default: my-value

question string

Question can be used to define a custom question if the variable was not yet used

default string | integer | boolean

Default is the default value the variable should have if not set by the user

options string[] | string

Options are options that can be selected when the variable question is asked

password boolean | string | string

Password signals that this variable should not be visible if entered

validationPattern string

ValidationPattern can be used to verify the user input

validationMessage string

ValidationMessage can be used to tell the user the format of the variable value

noCache boolean | string | string

NoCache can be used to prompt the user on every run for this variable

command string

Command is the command how to retrieve the variable. If args is omitted, command is parsed as a shell command.

args string[] | string

Args are optional args that will be used for the command

commands VariableCommand[] | string

Commands are additional commands that can be used to run a different command on a different operating system.

alwaysResolve boolean | string | string

AlwaysResolve makes sure this variable will always be resolved and not only if it is used somewhere. Defaults to false.

source string

Source defines where the variable should be taken from

Values: "all" "env" "input" "command" "none"
VariableCommand object
os string

OperatingSystem is optional and defines the operating system this command should be executed on

command string

Command is the command to use to retrieve the value for this variable. If no args are specified the command is run within a pseudo shell.

args string[] | string

Args are optional arguments for the command