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/configuration/config.yaml.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,7 +114,7 @@ To access applications running inside a DevSpace, the DevSpace CLI allows to con
114
114
- `labelSelector`*map[string]string* usually the release/app name
115
115
- `portMappings`*PortMapping array*
116
116
117
-
### devspace.portForwarding[*].portMappings[*]
117
+
### devspace.portForwarding[].portMappings[]
118
118
PortMapping:
119
119
- `localPort`*string* on localhost
120
120
- `remotePort`*string* remote pod port
@@ -136,43 +136,43 @@ In the example above, the entire code within the project would be synchronized w
136
136
## images
137
137
This section of the config defines a map of images that can be used in the helm chart that is deployed during `devspace up`.
138
138
139
-
### images[*]
139
+
### images[]
140
140
An image is defined by:
141
141
- `name`*string* of the image that is being pushed to the registry
142
142
- `tag`*string* stating the latest tag pushed to the registry (auto-generated)
143
143
- `registry`*string* referencing one of the keys defined in the `registries` map
144
144
- `build`*BuildConfig* defines the build procedure for this image
145
145
146
-
### images[*].build
146
+
### images[].build
147
147
BuildConfig:
148
148
- `engine`*Engine* The engine that should be used for building the image
149
149
150
-
### images[*].build.engine
150
+
### images[].build.engine
151
151
Engine:
152
152
An image build is mainly defined by the build engine. There are 2 build engines currently supported (choose only one):
153
153
- `docker`*DockerConfig* uses the local Docker daemon or a Docker daemon running inside a Minikube cluster (if `preferMinikube` == true)
154
154
- `kaniko`*KanikoConfig* builds images in userspace within a build pod running inside the Kubernetes cluster
155
155
156
-
### images[*].build.engine.docker
156
+
### images[].build.engine.docker
157
157
DockerConfig:
158
158
- `enabled`*bool* if true the local docker daemon is used for image building
159
159
- `preferMinikube`*bool* if true and the current kubectl context is minikube, the minikube docker daemon is used for image building
160
160
161
-
### images[*].build.engine.kaniko
161
+
### images[].build.engine.kaniko
162
162
KanikoConfig:
163
163
- `enabled`*bool* if true a kaniko build pod is used for image building
164
164
- `namespace`*string* specifies the namespace where the build pod should be started
165
165
166
166
## registries
167
167
This section of the config defines a map of image registries. You can use any external registry or link to the [services.internalRegistry](#services-internal-registry)
168
168
169
-
### registries[*]
169
+
### registries[]
170
170
ImageRegistry:
171
171
- `url` *string* of the registry (format: myregistry.com:port)
172
172
- `insecure`*bool* flag to allow pushing to registries without HTTPS
173
173
- `user`*RegistryUser* credentials for pushing to / pulling from the registry
174
174
175
-
### registries[*].user
175
+
### registries[].user
176
176
RegistryUser:
177
177
- `username`*string* that should be used for pushing and pulling from the registry
178
178
- `password`*string* that should be used for pushing and pulling from the registry
0 commit comments