Skip to content

Commit 7366ebe

Browse files
rename extension-author-guide to extension-guide
with redirects Signed-off-by: Joe Kimmel <[email protected]>
1 parent d8efffb commit 7366ebe

File tree

9 files changed

+34
-15
lines changed

9 files changed

+34
-15
lines changed

content/docs/extension-author-guide/_index.md renamed to content/docs/extension-guide/_index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ weight=4
44
include_summaries=true
55
expand=true
66
aliases=[
7-
"/docs/create-extension/"
7+
"/docs/create-extension/",
8+
"/docs/create-author-extension/"
89
]
9-
+++
10+
+++

content/docs/extension-author-guide/create-extension/_index.md renamed to content/docs/extension-guide/create-extension/_index.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
title="Create an extension"
33
weight=4
44
summary="This is a step-by-step tutorial for creating and using CNB image extensions"
5+
aliases = [
6+
"/docs/extension-author-guide/create-extension"
7+
]
58
+++
69

710
<!--+if false+-->
@@ -17,14 +20,14 @@ Before we get started, make sure you've got the following installed:
1720

1821
This is a step-by-step tutorial for creating and using CNB image extensions.
1922

20-
- [Set up your local environment](/docs/extension-author-guide/create-extension/setup-local-environment)
21-
- [See a build that requires base image extension in order to succeed](/docs/extension-author-guide/create-extension/why-dockerfiles)
22-
- [Building blocks of an extension](/docs/extension-author-guide/create-extension/building-blocks-extension)
23-
- [Generating a build.Dockerfile for your application](/docs/extension-author-guide/create-extension/build-dockerfile)
24-
- [Generating a run.Dockerfile for your application](/docs/extension-author-guide/create-extension/run-dockerfile)
23+
- [Set up your local environment](/docs/extension-guide/create-extension/setup-local-environment)
24+
- [See a build that requires base image extension in order to succeed](/docs/extension-guide/create-extension/why-dockerfiles)
25+
- [Building blocks of an extension](/docs/extension-guide/create-extension/building-blocks-extension)
26+
- [Generating a build.Dockerfile for your application](/docs/extension-guide/create-extension/build-dockerfile)
27+
- [Generating a run.Dockerfile for your application](/docs/extension-guide/create-extension/run-dockerfile)
2528

2629
<!--+if false+-->
2730
---
2831

29-
<a href="/docs/extension-author-guide/create-extension/setup-local-environment" class="button bg-pink">Start Tutorial</a>
30-
<!--+end+-->
32+
<a href="/docs/extension-guide/create-extension/setup-local-environment" class="button bg-pink">Start Tutorial</a>
33+
<!--+end+-->

content/docs/extension-author-guide/create-extension/build-dockerfile.md renamed to content/docs/extension-guide/create-extension/build-dockerfile.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
+++
22
title="Generating a build.Dockerfile"
33
weight=404
4+
aliases = [
5+
"/docs/extension-author-guide/create-extension/build-dockerfile/",
6+
]
47
+++
58

69
<!-- test:suite=dockerfiles;weight=4 -->
@@ -100,5 +103,5 @@ Let's take a look at how the `samples/curl` extension fixes the error by switchi
100103
<!--+ if false+-->
101104
---
102105

103-
<a href="/docs/extension-author-guide/create-extension/run-dockerfile" class="button bg-pink">Next Step</a>
106+
<a href="/docs/extension-guide/create-extension/run-dockerfile" class="button bg-pink">Next Step</a>
104107
<!--+ end +-->

content/docs/extension-author-guide/create-extension/building-blocks-extension.md renamed to content/docs/extension-guide/create-extension/building-blocks-extension.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
+++
22
title="Building blocks of a CNB Image Extension"
33
weight=403
4+
aliases = [
5+
"/docs/extension-author-guide/building-blocks-extension/"
6+
]
47
+++
58

69
<!-- test:suite=dockerfiles;weight=3 -->
@@ -46,5 +49,5 @@ We'll take a closer look at the executables for the `tree` extension in the next
4649
<!--+ if false+-->
4750
---
4851

49-
<a href="/docs/extension-author-guide/create-extension/build-dockerfile" class="button bg-pink">Next Step</a>
52+
<a href="/docs/extension-guide/create-extension/build-dockerfile" class="button bg-pink">Next Step</a>
5053
<!--+ end +-->

content/docs/extension-author-guide/create-extension/run-dockerfile.md renamed to content/docs/extension-guide/create-extension/run-dockerfile.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
+++
22
title="Generating a run.Dockerfile"
33
weight=405
4+
aliases = [
5+
"/docs/extension-author-guide/run-dockerfile/"
6+
]
47
+++
58

69
<!-- test:suite=dockerfiles;weight=5 -->

content/docs/extension-author-guide/create-extension/setup-local-environment.md renamed to content/docs/extension-guide/create-extension/setup-local-environment.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
+++
22
title="Set up your local environment"
33
weight=401
4+
aliases = [
5+
"/docs/extension-author-guide/create-extension/setup-local-environment/",
6+
]
47
+++
58

69
<!-- test:suite=dockerfiles;weight=1 -->
@@ -75,5 +78,5 @@ git clone https://github.com/buildpacks/samples.git
7578
<!--+ if false +-->
7679
---
7780

78-
<a href="/docs/extension-author-guide/create-extension/why-dockerfiles" class="button bg-pink">Next Step</a>
81+
<a href="/docs/extension-guide/create-extension/why-dockerfiles" class="button bg-pink">Next Step</a>
7982
<!--+ end+-->

content/docs/extension-author-guide/create-extension/why-dockerfiles.md renamed to content/docs/extension-guide/create-extension/why-dockerfiles.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
+++
22
title="Why Dockerfiles"
33
weight=402
4+
aliases = [
5+
"/docs/extension-author-guide/create-extension/why-dockerfiles/",
6+
]
47
+++
58

69
<!-- test:suite=dockerfiles;weight=2 -->
@@ -94,5 +97,5 @@ Let's take a look at how the `samples/tree` extension installs `tree` on the bui
9497
<!--+ if false+-->
9598
---
9699

97-
<a href="/docs/extension-author-guide/create-extension/building-blocks-extension" class="button bg-pink">Next Step</a>
100+
<a href="/docs/extension-guide/create-extension/building-blocks-extension" class="button bg-pink">Next Step</a>
98101
<!--+ end +-->

content/docs/features/dockerfiles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ An image extension could be defined with the following directory:
6060
respectively (in the [initial implementation](#phased-approach), only limited `run.Dockerfile`s are allowed).
6161

6262
For more information and to see a build in action,
63-
see [authoring an image extension](/docs/extension-author-guide/create-extension).
63+
see [authoring an image extension](/docs/extension-guide/create-extension).
6464

6565
## A platform's perspective
6666

content/docs/reference/spec/migration/buildpack-api-0.8-0.9.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ For older platforms (platform API version 0.9 and below), arguments in `args` wi
2828

2929
Platform 0.10 introduces image extensions as experimental components for customizing build and run-time base images (see [here](/docs/features/dockerfiles) for more information).
3030

31-
For more information, see [authoring an image extension](/docs/extension-author-guide/create-extension).
31+
For more information, see [authoring an image extension](/docs/extension-guide/create-extension).

0 commit comments

Comments
 (0)