Skip to content

Commit b0e28e7

Browse files
committed
Add next&previous links in each page
Signed-off-by: t-kikuc <[email protected]>
1 parent e2f4c76 commit b0e28e7

File tree

9 files changed

+61
-6
lines changed

9 files changed

+61
-6
lines changed

content/en/10-overview/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,8 @@ PipeCD is made up of two components - **Control Plane** and **Piped (Agent)**.
3636
## See Also
3737

3838
- [Docs > Overview](https://pipecd.dev/docs/overview/)
39-
- [Docs > Concepts](https://pipecd.dev/docs/concepts/)
39+
- [Docs > Concepts](https://pipecd.dev/docs/concepts/)
40+
41+
---
42+
43+
[Next: Prerequisites >](../20-prerequisites/README.md)

content/en/20-prerequisites/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,9 @@ To perform this tutorial, you need the following:
2626
- function’s execution role
2727
- for **Terraform**:
2828
- You can execute [`terraform` commands](https://developer.hashicorp.com/terraform/cli/commands) on local.
29+
30+
---
31+
32+
[Next: Install >](../30-install/README.md)
33+
34+
[< Previous: Mechanism Overview](../10-overview/README.md)

content/en/30-install/01-git.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,8 @@ It contains configs for the installation and deployments.
2424
```
2525

2626

27+
---
28+
29+
[Next: 2. Install Control Plane >](02-control-plane.md)
30+
31+
[< Previous: Install](README.md)

content/en/30-install/02-control-plane.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,10 @@ In this page, you will install a Control Plane on local by `docker-compose`.
4747

4848
- [Architecture Overview](https://pipecd.dev/docs/user-guide/managing-controlplane/architecture-overview/)
4949
- [Managing Control Plane](https://pipecd.dev/docs/user-guide/managing-controlplane/)
50-
- [Installing Control Plane on Kubernetes](https://pipecd.dev/docs/installation/install-control-plane/installing-controlplane-on-k8s/)
50+
- [Installing Control Plane on Kubernetes](https://pipecd.dev/docs/installation/install-control-plane/installing-controlplane-on-k8s/)
51+
52+
---
53+
54+
[Next: 3. Install Piped >](03-piped.md)
55+
56+
[< Previous: 1. Setup Git Repository](01-git.md)

content/en/30-install/03-piped.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In this page, you will run a Piped agent on local as a single binary.
1717
1-4. You will see the Piped's ID and Key. **You will use them in the following steps.**
1818
![Piped is registered](/images/install/piped-registered.png)
1919

20-
2. Move on to the directory you cloned in [1. Setup Git Repository](git.md).
20+
2. Move on to the directory you cloned in [1. Setup Git Repository](01-git.md).
2121

2222
```console
2323
cd <YOUR_CLONED_TUTORIAL_DIR>
@@ -94,3 +94,9 @@ In this page, you will run a Piped agent on local as a single binary.
9494
[^1]: Do **NOT** push a Piped Key to remote because it is a credential. In actual use, you should store it and `piped.yaml` in a secret management tool.
9595

9696
[^2]: `--insecure` option disables TLS of the communication from the Piped to the Control Plane. (cf. [Piped's Runtime Options](https://pipecd.dev/docs/user-guide/managing-piped/runtime-options/))
97+
98+
---
99+
100+
[Next: Deploy >](../40-deploy/README.md)
101+
102+
[< Previous: 2. Install Control Plane](02-control-plane.md)

content/en/30-install/README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,16 @@
33
In this chapter, you will run a Control Plane and a Piped locally.
44

55
![Installation flow](/images/install/installation-flow.svg)
6-
<p align="center">Installation flow</p>
6+
<p align="center">Installation flow</p>
7+
8+
---
9+
10+
[Next: Setup Git Repository >](01-git.md)
11+
12+
[< Previous: Prerequisites](../20-prerequisites/README.md)
13+
14+
---
15+
16+
[Next: 1. Setup Git Repository >](01-git.md)
17+
18+
[< Previous: Prerequisites](../20-prerequisites/README.md)

content/en/40-deploy/01-simply.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,9 @@ In this page, you will deploy an application to your platform in a simple way.
8686
4-3. Go to the deployments page again. [http://localhost:8080/deployments](http://localhost:8080/deployments)
8787

8888
4-4. A new deployment will start in a few minutes.
89+
90+
---
91+
92+
[Next: Deploy with a Customized Pipeline >](02-pipeline.md)
93+
94+
[< Previous: Deploy](README.md)

content/en/40-deploy/02-pipeline.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
In this page, you will deploy with a customized pipeline like Canary release.
44

5-
_The process is almost the same as [1. Deploy Simply](deploy.md). Only the config files (essentially only `app.pipecd.yaml`) are different._
5+
_The process is almost the same as [1. Deploy Simply](01-simply.md). Only the config files (essentially only `app.pipecd.yaml`) are different._
66

77
## 1. Prepare config files
88

@@ -72,3 +72,7 @@ _The process is almost the same as [1. Deploy Simply](deploy.md). Only the confi
7272
- [Configuration examples](https://github.com/pipe-cd/examples)
7373
- [Customizing deployment](https://pipecd.dev/docs/user-guide/managing-application/customizing-deployment/)
7474
- [Configuration Reference > Stage options](https://pipecd.dev/docs/user-guide/configuration-reference/#stageoptions)
75+
76+
---
77+
78+
[< Previous: 1. Deploy Simply](01-simply.md)

content/en/40-deploy/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,10 @@ The deployment flow is like this:
1010
4. Your Piped deploys.
1111

1212
![deployment flow](/images/deploy/deployment-flow.svg)
13-
<p align="center">Deployment flow</p>
13+
<p align="center">Deployment flow</p>
14+
15+
---
16+
17+
[Next: 1. Deploy Simply >](01-simply.md)
18+
19+
[< Previous: 3. Install Piped](../30-install/03-piped.md)

0 commit comments

Comments
 (0)