Skip to content

Commit 2bb85cf

Browse files
author
Natalie Arellano
committed
Fix broken links
Signed-off-by: Natalie Arellano <[email protected]>
1 parent 270bfd9 commit 2bb85cf

File tree

45 files changed

+87
-99
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+87
-99
lines changed

content/community.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If you didn't find anything you'd like to improve while going through the tutori
3535
[talks]: /docs/#talks
3636
[tutorials]: /docs/#tutorials
3737
[spec]: /docs/reference/spec/
38-
[platforms]: /docs/concepts/components/platform/
38+
[platforms]: /docs/for-platform-operators/concepts/platform/
3939
[pack]: https://github.com/buildpacks/pack
4040
[lifecycle]: https://github.com/buildpacks/lifecycle
4141
[docs]: https://github.com/buildpacks/docs

content/docs/_index.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,9 @@ summary="Get started with Cloud Native Buildpacks."
1515
* [An App’s Brief Journey from Source to Image](/docs/app-journey/) - An easy-to-follow introduction to Cloud Native Buildpacks using `pack`, a command line tool for Cloud Native Buildpacks.
1616
* [Creating a Cloud Native Buildpack](/docs/buildpack-author-guide/create-buildpack) - Tutorial walking through the creation of a simple Ruby buildpack.
1717

18-
## [Concepts](/docs/concepts)
18+
## Going deeper
1919

20-
Learn the [concepts](/docs/concepts) of Cloud Native Buildpacks.
21-
22-
## Guides
23-
24-
Set of guides tailored to specific personas:
20+
See how-to guides, concepts, and advanced tutorials tailored to specific personas:
2521

2622
* [App Developers](/docs/for-app-developers/)
2723
* [Buildpack Authors](/docs/for-buildpack-authors/)

content/docs/app-journey.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Windows image builds are now supported!
101101

102102
<a href="/docs/for-app-developers/how-to/configure-build-environment/build-for-windows" class="button bg-blue">Windows build guide</a>
103103

104-
[builder]: /docs/concepts/components/builder/
105-
[buildpack]: /docs/concepts/components/buildpack/
104+
[builder]: /docs/for-platform-operators/concepts/builder/
105+
[buildpack]: /docs/for-platform-operators/concepts/buildpack/
106106
[samples-java-maven]: https://github.com/buildpacks/samples/tree/main/apps/java-maven
107107
[pack-docs]: /docs/tools/pack/

content/docs/buildpack-author-guide/create-buildpack/building-blocks-cnb.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ os = "linux"
5858
```
5959

6060
The buildpack ID is the way you will reference the buildpack when you create buildpack groups, builders, etc.
61-
[Targets](/docs/concepts/components/targets/) identifies the kind of build and run base images the buildpack will work with.
61+
[Targets](/docs/for-platform-operators/concepts/targets/) identifies the kind of build and run base images the buildpack will work with.
6262
The stack ID (deprecated) uniquely identifies a build and run image configuration the buildpack will work with. This example can be run on Ubuntu Jammy.
6363

6464
### `detect` and `build`
@@ -136,5 +136,5 @@ ERROR: failed to detect: buildpack(s) failed with err
136136

137137
<a href="/docs/buildpack-author-guide/create-buildpack/detection" class="button bg-pink">Next Step</a>
138138

139-
[builder]: /docs/concepts/components/builder
139+
[builder]: /docs/for-platform-operators/concepts/builder
140140
<!--+ end +-->

content/docs/concepts/components/_index.md

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

content/docs/concepts/_index.md renamed to content/docs/for-app-developers/concepts/buildpacks-basics/_index.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
+++
2-
title="Concepts"
3-
weight=3
2+
title="Buildpacks basics"
3+
weight=1
44
expand=false
55
+++
66

7-
<p class="lead">
8-
Buildpacks allow you to convert your source code into a secure, efficient, production ready container image.
9-
</p>
7+
Learn how buildpacks convert your application source code into a secure, efficient, production-ready container image.
8+
9+
<!--more-->
1010

1111
## What are buildpacks?
1212

13-
![buildpacks](/docs/concepts/what.svg)
13+
![buildpacks](/docs/for-app-developers/concepts/buildpacks-basics/what.svg)
1414

15-
**[Buildpacks](/docs/concepts/components/buildpack) provide framework and runtime support for applications.** Buildpacks examine your apps to determine all the dependencies it needs and configure them appropriately to run on any cloud.
15+
**[Buildpacks](/docs/for-platform-operators/concepts/buildpack) provide framework and runtime support for applications.** Buildpacks examine your apps to determine all the dependencies it needs and configure them appropriately to run on any cloud.
1616

1717

1818
## How do they work?
1919

20-
![how](/docs/concepts/how.svg)
20+
![how](/docs/for-app-developers/concepts/buildpacks-basics/how.svg)
2121

2222
**Each buildpack comprises of two phases -**
2323

@@ -45,12 +45,12 @@ For example:
4545

4646
## What is a builder?
4747

48-
![builder](/docs/concepts/builder.svg)
48+
![builder](/docs/for-app-developers/concepts/buildpacks-basics/builder.svg)
4949

50-
[`Builders`](/docs/concepts/components/builder) are an ordered combination of [`buildpacks`](/docs/concepts/components/buildpack) with a base `build image`, a lifecycle, and reference to a `run image`.
50+
[`Builders`](/docs/for-platform-operators/concepts/builder) are an ordered combination of [`buildpacks`](/docs/for-platform-operators/concepts/buildpack) with a base `build image`, a lifecycle, and reference to a `run image`.
5151
They take in your `app` source code and build the output `app image`. The `build image` provides the base environment for the `builder` (for eg. an Ubuntu Bionic OS image with build tooling) and a `run image` provides the base environment for the `app image` during runtime.
5252

53-
Under the hood a builder uses the [`lifecycle`](/docs/concepts/components/lifecycle) to run the `detect` phase for all the `buildpacks` it contains in order and then proceeds to run the `build` phase of all the `buildpacks` that passed detection.
53+
Under the hood a builder uses the [`lifecycle`](/docs/for-platform-operators/concepts/lifecycle) to run the `detect` phase for all the `buildpacks` it contains in order and then proceeds to run the `build` phase of all the `buildpacks` that passed detection.
5454

5555
This allows us to have a **single** `builder` that can detect and build various kinds of applications automatically.
5656

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
+++
2-
title="Operations"
2+
title="Buildpacks operations"
33
weight=2
44
include_summaries=true
5-
expand=true
65
+++

0 commit comments

Comments
 (0)