docs: fix links

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
Andrea Luzzardi 2021-06-02 12:51:41 -07:00
parent f0fa43aaec
commit 701feb1296

View File

@ -76,7 +76,9 @@ For more inspiration, see these examples:
- [Add HTTP monitoring to your application](https://github.com/dagger/dagger/blob/main/examples/README.md#add-http-monitoring-to-your-application) - [Add HTTP monitoring to your application](https://github.com/dagger/dagger/blob/main/examples/README.md#add-http-monitoring-to-your-application)
- [Deploy an application to your Kubernetes cluster](https://github.com/dagger/dagger/blob/main/examples/README.md#deploy-an-application-to-your-kubernetes-cluster) - [Deploy an application to your Kubernetes cluster](https://github.com/dagger/dagger/blob/main/examples/README.md#deploy-an-application-to-your-kubernetes-cluster)
5\. Extend your plan with relay definitions from [Dagger Universe](#), an encyclopedia of cue packages curated by the Dagger community. 5\. Extend your plan with relay definitions from [Dagger
Universe](https://github.com/dagger/dagger/tree/main/stdlib), an encyclopedia of
cue packages curated by the Dagger community.
6\. If you can't find the relay you need in the Universe, you can simply create your own. 6\. If you can't find the relay you need in the Universe, you can simply create your own.
@ -147,13 +149,16 @@ _Relays_ are the basic components of a _plan_. Each relay is a node in the graph
performing the task assigned to that node. For example one relay fetches source code; another runs a build; performing the task assigned to that node. For example one relay fetches source code; another runs a build;
another uploads a container image; etc. another uploads a container image; etc.
Relays are standalone software components: they are defined in [Cue](https://cuelang.org), but can Relays are standalone software components: they are defined in [Cue](https://cuelang.org/), but can
execute code in any language using the [Dagger pipeline API](#). execute code in any language using the [Dagger pipeline
API](https://github.com/dagger/dagger/blob/main/stdlib/dagger/op/op.cue).
A relay is made of 3 parts: A relay is made of 3 parts:
- Inputs: data received from the user, or upstream relays - Inputs: data received from the user, or upstream relays
- A processing pipeline: code executed against each new input, using the [pipeline API](#) - A processing pipeline: code executed against each new input, using the
[pipeline
API](https://github.com/dagger/dagger/blob/main/stdlib/dagger/op/op.cue)
- Outputs: data produced by the processing pipeline - Outputs: data produced by the processing pipeline
Relays run in parallel, with their inputs and outputs interconnected into a special kind of graph, Relays run in parallel, with their inputs and outputs interconnected into a special kind of graph,