Skip to content

Commit f4c7b9c

Browse files
authored
Merge pull request #2232 from FabianKramm/main
docs: fix activation page
2 parents 616da5c + f7dbc95 commit f4c7b9c

26 files changed

Lines changed: 255 additions & 5 deletions

File tree

docs/pages/configuration/_partials/functions/build_images.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import PartialForcerebuild from "./build_images/force-rebuild.mdx"
77
import PartialSequential from "./build_images/sequential.mdx"
88
import PartialMaxconcurrent from "./build_images/max-concurrent.mdx"
99
import PartialAll from "./build_images/all.mdx"
10+
import PartialExcept from "./build_images/except.mdx"
1011
import PartialSet from "./build_images/set.mdx"
1112
import PartialSetstring from "./build_images/set-string.mdx"
1213
import PartialFrom from "./build_images/from.mdx"
@@ -29,6 +30,7 @@ Builds all images passed as arguments in parallel
2930
<PartialSequential />
3031
<PartialMaxconcurrent />
3132
<PartialAll />
33+
<PartialExcept />
3234
<PartialSet />
3335
<PartialSetstring />
3436
<PartialFrom />
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
<details className="config-field -function" data-expandable="false">
3+
<summary>
4+
5+
#### `--except` <span className="config-field-type">[]string</span> <span className="config-field-enum"></span> <span className="config-field-default -return"></span> <span className="config-field-required" data-required="false">pipeline only</span> {#build_images-except}
6+
7+
If used with --all, will exclude the following images
8+
9+
</summary>
10+
11+
12+
13+
</details>

docs/pages/configuration/_partials/functions/create_deployments.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
import PartialSkip from "./create_deployments/skip.mdx"
2+
import PartialSkipdeploy from "./create_deployments/skip-deploy.mdx"
33
import PartialForceredeploy from "./create_deployments/force-redeploy.mdx"
44
import PartialSequential from "./create_deployments/sequential.mdx"
55
import PartialRender from "./create_deployments/render.mdx"
@@ -8,6 +8,7 @@ import PartialSetstring from "./create_deployments/set-string.mdx"
88
import PartialFrom from "./create_deployments/from.mdx"
99
import PartialFromfile from "./create_deployments/from-file.mdx"
1010
import PartialAll from "./create_deployments/all.mdx"
11+
import PartialExcept from "./create_deployments/except.mdx"
1112

1213
<details className="config-field -function" data-expandable="true">
1314
<summary>
@@ -18,7 +19,7 @@ Creates all deployments passed as arguments in parallel
1819

1920
</summary>
2021

21-
<PartialSkip />
22+
<PartialSkipdeploy />
2223
<PartialForceredeploy />
2324
<PartialSequential />
2425
<PartialRender />
@@ -27,6 +28,7 @@ Creates all deployments passed as arguments in parallel
2728
<PartialFrom />
2829
<PartialFromfile />
2930
<PartialAll />
31+
<PartialExcept />
3032

3133

3234
</details>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
<details className="config-field -function" data-expandable="false">
3+
<summary>
4+
5+
#### `--except` <span className="config-field-type">[]string</span> <span className="config-field-enum"></span> <span className="config-field-default -return"></span> <span className="config-field-required" data-required="false">pipeline only</span> {#create_deployments-except}
6+
7+
If used with --all, will exclude the following deployments
8+
9+
</summary>
10+
11+
12+
13+
</details>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
<details className="config-field -function" data-expandable="false">
3+
<summary>
4+
5+
#### `--skip-deploy` <span className="config-field-type">bool</span> <span className="config-field-enum"></span> <span className="config-field-default -return"></span> <span className="config-field-required" data-required="false">pipeline only</span> {#create_deployments-skip-deploy}
6+
7+
If enabled, will skip deploying
8+
9+
</summary>
10+
11+
12+
13+
</details>

docs/pages/configuration/_partials/functions/ensure_pull_secrets.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import PartialSetstring from "./ensure_pull_secrets/set-string.mdx"
44
import PartialFrom from "./ensure_pull_secrets/from.mdx"
55
import PartialFromfile from "./ensure_pull_secrets/from-file.mdx"
66
import PartialAll from "./ensure_pull_secrets/all.mdx"
7+
import PartialExcept from "./ensure_pull_secrets/except.mdx"
78

89
<details className="config-field -function" data-expandable="true">
910
<summary>
@@ -19,6 +20,7 @@ Creates pull secrets for all images passed as arguments
1920
<PartialFrom />
2021
<PartialFromfile />
2122
<PartialAll />
23+
<PartialExcept />
2224

2325

2426
</details>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
<details className="config-field -function" data-expandable="false">
3+
<summary>
4+
5+
#### `--except` <span className="config-field-type">[]string</span> <span className="config-field-enum"></span> <span className="config-field-default -return"></span> <span className="config-field-required" data-required="false">pipeline only</span> {#ensure_pull_secrets-except}
6+
7+
If used with --all, will exclude the following pull secrets
8+
9+
</summary>
10+
11+
12+
13+
</details>

docs/pages/configuration/_partials/functions/purge_deployments.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11

22
import PartialForcepurge from "./purge_deployments/force-purge.mdx"
33
import PartialAll from "./purge_deployments/all.mdx"
4+
import PartialExcept from "./purge_deployments/except.mdx"
45
import PartialSequential from "./purge_deployments/sequential.mdx"
56

67
<details className="config-field -function" data-expandable="true">
@@ -14,6 +15,7 @@ Purges all deployments passed as arguments
1415

1516
<PartialForcepurge />
1617
<PartialAll />
18+
<PartialExcept />
1719
<PartialSequential />
1820

1921

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
<details className="config-field -function" data-expandable="false">
3+
<summary>
4+
5+
#### `--except` <span className="config-field-type">[]string</span> <span className="config-field-enum"></span> <span className="config-field-default -return"></span> <span className="config-field-required" data-required="false">pipeline only</span> {#purge_deployments-except}
6+
7+
If used with --all, will exclude the following deployments
8+
9+
</summary>
10+
11+
12+
13+
</details>

docs/pages/configuration/_partials/functions/run_dependency_pipelines.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ import PartialPipeline from "./run_dependency_pipelines/pipeline.mdx"
33
import PartialExclude from "./run_dependency_pipelines/exclude.mdx"
44
import PartialOnly from "./run_dependency_pipelines/only.mdx"
55
import PartialSequential from "./run_dependency_pipelines/sequential.mdx"
6+
import PartialSetflag from "./run_dependency_pipelines/set-flag.mdx"
67
import PartialAll from "./run_dependency_pipelines/all.mdx"
8+
import PartialExcept from "./run_dependency_pipelines/except.mdx"
79

810
<details className="config-field -function" data-expandable="true">
911
<summary>
@@ -18,7 +20,9 @@ Runs a pipeline of each dependency passed as arguments
1820
<PartialExclude />
1921
<PartialOnly />
2022
<PartialSequential />
23+
<PartialSetflag />
2124
<PartialAll />
25+
<PartialExcept />
2226

2327

2428
</details>

0 commit comments

Comments
 (0)