Skip to content

Commit 5f664e5

Browse files
author
Natalie Arellano
committed
Move content to operators how-to
Signed-off-by: Natalie Arellano <[email protected]>
1 parent 3e2d40d commit 5f664e5

File tree

9 files changed

+14
-13
lines changed

9 files changed

+14
-13
lines changed

content/docs/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Set of guides tailored to specific personas:
2525

2626
* [App Developers](/docs/app-developer-guide/)
2727
* [Buildpack Authors](/docs/buildpack-author-guide/)
28-
* [Operators](/docs/operator-guide/)
28+
* [Operators](/docs/for-platform-operators/)
2929

3030
## [Tools](/docs/tools/)
3131

content/docs/concepts/components/builder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ A builder consists of the following components:
2727
To learn how to create your own builder, see our [Operator's Guide][operator-guide].
2828

2929
[builder-config]: /docs/reference/builder-config/
30-
[operator-guide]: /docs/operator-guide/
30+
[operator-guide]: /docs/for-platform-operators/
3131
[buildpack]: /docs/concepts/components/buildpack/
3232
[lifecycle]: /docs/concepts/components/lifecycle/

content/docs/concepts/components/buildpack-group.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ The [Operator's Guide][operator-guide] has more information on creating builders
5050

5151
[buildpack-group]: /docs/reference/config/builder-config/#order-_list-required_
5252
[order-resolution]: https://github.com/buildpacks/spec/blob/main/buildpack.md#order-resolution
53-
[operator-guide]: /docs/operator-guide/
53+
[operator-guide]: /docs/for-platform-operators/
5454
[builder]: /docs/concepts/components/builder/
5555
[meta-buildpack]: /docs/concepts/components/buildpack/#meta-buildpack

content/docs/concepts/components/stack.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ By providing the required `[stack]` section, a builder author can configure a st
5252

5353
To learn how to create your own stack, see our [Operator's Guide][operator-guide].
5454

55-
[operator-guide]: /docs/operator-guide/
55+
[operator-guide]: /docs/for-platform-operators/
5656
[builder]: /docs/concepts/components/builder/
5757
[buildpack]: /docs/concepts/components/buildpack/
5858
[lifecycle]: /docs/concepts/components/lifecycle/

content/docs/operator-guide/create-build-base.md renamed to content/docs/for-platform-operators/how-to/create-build-base.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title="Create a build base image"
33
weight=2
44
+++
55

6+
<!--more-->
7+
68
## Define a build base image for your CNB build
79

810
We need a Dockerfile similar to the following:

content/docs/operator-guide/create-a-builder.md renamed to content/docs/for-platform-operators/how-to/create-builder.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ title="Create a builder"
33
weight=1
44
+++
55

6-
Creating a custom [builder][builder] allows you to control what buildpacks are used and what image apps are based on.
6+
A [builder][builder] is an OCI image with all the inputs needed for a buildpacks build, including
7+
the build-time base image, a reference to a runtime base image, a lifecycle, and a set of buildpacks.
78

89
<!--more-->
910

content/docs/operator-guide/create-run-base.md renamed to content/docs/for-platform-operators/how-to/create-run-base.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title="Create a run base image"
33
weight=3
44
+++
55

6+
<!--more-->
7+
68
## Define a run base image for your CNB build
79

810
We need a Dockerfile similar to the following:

content/docs/operator-guide/create-a-stack.md renamed to content/docs/for-platform-operators/how-to/create-stack.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ title="Create a stack"
33
weight=4
44
+++
55

6+
<!--more-->
7+
68
**Note**: As of Platform API 0.12 and Buildpack API 0.10, stacks are deprecated in favor of existing constructs in the container image ecosystem such as operating system name, operating system distribution, and architecture.
79

810
You can still configure the build and run base images for your CNB build.
9-
To find out how, see [create a build base image](/docs/operator-guide/create-build-base/) and [create a run base image](/docs/operator-guide/create-run-base/).
11+
To find out how, see [create a build base image](/docs/for-platform-operators/how-to/create-build-base/) and [create a run base image](/docs/for-platform-operators/how-to/create-run-base/).
1012

1113
A stack is the grouping together of the build and run base images, represented by a unique ID.
1214
A stack ID identifies the configuration for the build and run base images, and it used to determined compatibility with available buildpacks, and rebasability when updated run images are available.
@@ -24,7 +26,7 @@ Before we get started, make sure you've got the following installed:
2426
## Creating a custom stack
2527

2628
We will create a sample stack based on `Ubuntu Jammy Jellyfish`. To create a custom stack, we need to create customized build and run images.
27-
To find out how, see [create a build base image](/docs/operator-guide/create-build-base/) and [create a run base image](/docs/operator-guide/create-run-base/), then come back here.
29+
To find out how, see [create a build base image](/docs/for-platform-operators/how-to/create-build-base/) and [create a run base image](/docs/for-platform-operators/how-to/create-run-base/), then come back here.
2830

2931
## Choose your stack ID
3032

content/docs/operator-guide/_index.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)