Skip to content

Commit 3a5d84e

Browse files
authored
Merge pull request #313 from covexo/issue-307
Issue 307
2 parents 094b8aa + 4f1f9d7 commit 3a5d84e

2 files changed

Lines changed: 9 additions & 11 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ Take a look at the [Getting Started Guide](https://devspace.covexo.com/docs/gett
6262
Here you can find some links to the most important pages of our documentation:
6363
- [Getting Started Guide](https://devspace.covexo.com/docs/getting-started/quickstart.html)
6464
- [Frequently Asked Questions (FAQ)](https://devspace.covexo.com/docs/getting-started/faq.html)
65+
- [DevSpace Configuration Options](https://devspace.covexo.com/docs/configuration/config.yaml.html)
6566
- [CLI Documentation](https://devspace.covexo.com/docs/cli/init.html)
66-
- [Configuration Options](https://devspace.covexo.com/docs/configuration/dockerfile.html)
6767
- [Architecture Documentation](https://devspace.covexo.com/docs/advanced/architecture.html)
6868

6969
## [DevSpace Cloud](https://devspace-cloud.com/)

docs/docs/configuration/config.yaml.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ devSpace:
180180
# Label selector to select the correct pods
181181
labelSelector:
182182
release: devspace-default
183+
# What to deploy within your project
183184
deployments:
184185
- name: devspace-default # this is also the release name, when using helm as deployment method
185186
helm:
@@ -194,12 +195,10 @@ devSpace:
194195
- kube/additional/*
195196
# Automatically forwarded ports on `devspace up` (same functionality as running manually kubectl port-forward)
196197
portForwarding:
197-
# Currently only pod is supported
198-
- resourceType: pod
199198
# Map of key value matchLabel selectors
200-
labelSelector:
201-
release: my-app
202-
# namespace where to select the pods from
199+
- labelSelector:
200+
release: devspace-default
201+
# optional namespace where to select the pods from
203202
namespace: my-namespace
204203
# Array of port mappings
205204
portMappings:
@@ -211,8 +210,7 @@ devSpace:
211210
remotePort: 80
212211
sync:
213212
# Currently only resource type pod is supported
214-
- resourceType: pod
215-
labelSelector:
213+
- labelSelector:
216214
release: devspace-default
217215
# The container within the pod to sync to
218216
containerName: default
@@ -223,7 +221,7 @@ devSpace:
223221
# Exclude node_modules from up and download
224222
excludePaths:
225223
- node_modules/
226-
# A list of images that should be build during devspace up
224+
# A map of images that should be build during devspace up
227225
images:
228226
default:
229227
# Image name with prefixed docker image registry
@@ -256,7 +254,7 @@ images:
256254
privateRegistryImage:
257255
name: user/test
258256
registry: privateRegistry
259-
# The registries the images should be pushed to
257+
# Optional: the registries the images should be pushed to
260258
registries:
261259
# Internal registry that will be automatically deployed to the target
262260
# cluster if desired
@@ -271,7 +269,7 @@ registries:
271269
auth:
272270
username: user-XXXXX
273271
password: XXXXXXXXXX # Can also be a token
274-
# Optional: The deployed internal registry within the cluster
272+
# Optional: Deploy internal registry within the cluster
275273
internalRegistry:
276274
deploy: true
277275
# Optional: Tiller server that should be used within the cluster (only necessary if you want to use helm as deployment)

0 commit comments

Comments
 (0)