Skip to content

Commit ea11a7f

Browse files
committed
docs: rename basiscs.mdx to index.mdx
1 parent 4cb1131 commit ea11a7f

47 files changed

Lines changed: 258 additions & 230 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11

2+
import PartialDockerfile from "./dockerfile.mdx"
3+
import PartialContext from "./context.mdx"
24
import PartialBuildArgs from "./buildArgs.mdx"
35
import PartialTarget from "./target.mdx"
46
import PartialNetwork from "./network.mdx"
5-
import PartialSkipPush from "./skipPush.mdx"
6-
import PartialCreatePullSecret from "./createPullSecret.mdx"
77
import PartialRebuildStrategy from "./rebuildStrategy.mdx"
88

99
<div className="group" data-group="buildConfig">
1010
<div className="group-name">Build Configuration</div>
1111

12+
<PartialDockerfile />
13+
<PartialContext />
1214
<PartialBuildArgs />
1315
<PartialTarget />
1416
<PartialNetwork />
15-
<PartialSkipPush />
16-
<PartialCreatePullSecret />
1717
<PartialRebuildStrategy />
1818

1919
</div>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
import PartialSkipPush from "./skipPush.mdx"
3+
import PartialCreatePullSecret from "./createPullSecret.mdx"
4+
5+
<div className="group" data-group="pushPull">
6+
<div className="group-name">Push & Pull</div>
7+
8+
<PartialSkipPush />
9+
<PartialCreatePullSecret />
10+
11+
</div>
Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11

22
import PartialImage from "./images/image.mdx"
33
import PartialTags from "./images/tags.mdx"
4-
import PartialDockerfile from "./images/dockerfile.mdx"
5-
import PartialContext from "./images/context.mdx"
6-
import PartialGroupoverwrites from "./images/group_overwrites.mdx"
74
import PartialGroupbuildConfig from "./images/group_buildConfig.mdx"
5+
import PartialGroupoverwrites from "./images/group_overwrites.mdx"
6+
import PartialGrouppushPull from "./images/group_pushPull.mdx"
87
import PartialGroupengines from "./images/group_engines.mdx"
98

109
<PartialImage />
@@ -13,16 +12,13 @@ import PartialGroupengines from "./images/group_engines.mdx"
1312
<PartialTags />
1413

1514

16-
<PartialDockerfile />
17-
18-
19-
<PartialContext />
15+
<PartialGroupbuildConfig />
2016

2117

2218
<PartialGroupoverwrites />
2319

2420

25-
<PartialGroupbuildConfig />
21+
<PartialGrouppushPull />
2622

2723

2824
<PartialGroupengines />
File renamed without changes.
File renamed without changes.

docs/pages/configuration/deployments/helm/basics.mdx renamed to docs/pages/configuration/deployments/helm/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ deployments:
135135
```
136136

137137
### `updateImageTags`
138-
The `updateImageTags` option expects a boolean stating if DevSpace should do [Image Tag Replacement](../basics.mdx#3-tag-replacement).
138+
The `updateImageTags` option expects a boolean stating if DevSpace should do [Image Tag Replacement](../index.mdx#3-tag-replacement).
139139

140140
When set to `true`, DevSpace searches all your values (specified via `values` or `valuesFiles`) for images that are defined in the `images` section of the `devspace.yaml`. If DevSpace finds an image, it replaces or appends the image tag with the tag it created during the image building process. Image tag replacement makes sure that your application will always be started with the most up-to-date image that DevSpace has built for you.
141141

@@ -266,7 +266,7 @@ The `values` option expects an object with values that should be overriding the
266266

267267
Compared to the `valuesFiles` option, using `values` has the following advantages:
268268
- It is easier to comprehend and faster to find (no references)
269-
- It allows you to use [dynamic config variables](../../variables/basics.mdx)
269+
- It allows you to use [dynamic config variables](../../variables/index.mdx)
270270

271271
:::info
272272
Because both, `values` and `valuesFiles`, have advantages and disadvantages, it is often useful to combine them. When setting both, values defined in `values` have precedence over values defined in `valuesFiles`.

docs/pages/configuration/deployments/basics.mdx renamed to docs/pages/configuration/deployments/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ deployments:
107107
</Tabs>
108108
109109
:::info Sequential and Concurrent Deployment
110-
Deployments, like images, will be processed in parallel by default. To process deployments sequentially, you can specify it as a dependency, or override the pipeline and call [create_deployments](../../configuration/pipelines/functions/create_deployments.mdx) sequentially.
110+
Deployments, like images, will be processed in parallel by default. To process deployments sequentially, you can specify it as a dependency, or override the pipeline and call [create_deployments](../../configuration/functions/index.mdx#create_deployments) sequentially.
111111
:::
112112
113113
## Run Deployments

docs/pages/configuration/deployments/kubectl/basics.mdx renamed to docs/pages/configuration/deployments/kubectl/index.mdx

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)