Skip to content
This repository was archived by the owner on Jan 5, 2019. It is now read-only.

Commit ba2ddfc

Browse files
authored
Merge pull request #284 from djmitche/bug1476441
Bug 1476441 - fix relative docs links
2 parents b502d8f + 3d0e722 commit ba2ddfc

4 files changed

Lines changed: 14 additions & 14 deletions

File tree

docs/actions.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ worker will have a `context=worker` since it's operating on the worker level.
1515
An action to reboot a single worker would have `context=worker`.
1616

1717
Queue Actions are conceptually related to [task
18-
actions](/manual/using/actions), in that both allow resources to expose
18+
actions](/docs/manual/using/actions), in that both allow resources to expose
1919
context-specific opportunities to manipulate those resources. However, the
2020
implementations are completely different.
2121

2222
## Defining Actions
2323

2424
Actions are defined at the provisioner level. To set the actions to a
2525
provisioner, perform a call to the queue's
26-
[declareProvisioner](/reference/platform/taskcluster-queue/references/api#declareProvisioner)
26+
[declareProvisioner](/docs/reference/platform/taskcluster-queue/references/api#declareProvisioner)
2727
method, supplying a list of actions.
2828

2929
An action is comprised with the following properties:
@@ -40,7 +40,7 @@ An action is comprised with the following properties:
4040

4141
Note that the action endpoint should return early. In other words, if an action takes a while
4242
to finish, start it up and send the HTTP response. To notify a user with the action status,
43-
use [taskcluster-notify](https://docs.taskcluster.net/reference/core/taskcluster-notify).
43+
use [taskcluster-notify](/docs/reference/core/taskcluster-notify).
4444

4545

4646
### Context
@@ -50,9 +50,9 @@ specific to a context will only be returned by the appropriate API method.
5050

5151
| `context` | API Method |
5252
|---------------|----------------------------------------------------------------------------------------|
53-
| `provisioner` | [getProvisioner](/reference/platform/taskcluster-queue/references/api#getProvisioner)* |
54-
| `worker-type` | [getWorkerType](/reference/platform/taskcluster-queue/references/api#getWorkerType) |
55-
| `worker` | [getWorker](/reference/platform/taskcluster-queue/references/api#getWorker) |
53+
| `provisioner` | [getProvisioner](/docs/reference/platform/taskcluster-queue/references/api#getProvisioner)* |
54+
| `worker-type` | [getWorkerType](/docs/reference/platform/taskcluster-queue/references/api#getWorkerType) |
55+
| `worker` | [getWorker](/docs/reference/platform/taskcluster-queue/references/api#getWorker) |
5656

5757
Note that all actions are declared at the provisioner level, regardless of
5858
context. For symmetry, `getProvisioner` also returns all actions, not just

docs/worker-hierarchy.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The queue defines a hierarchy of resources that consume tasks from queues:
77

88
## Provisioners
99

10-
[Provisioners](/manual/task-execution/provisioning), identified with a
10+
[Provisioners](/docs/manual/task-execution/provisioning), identified with a
1111
`provisionerId`, are responsible for groups of worker types. While some
1212
provisioners, such as the AWS provisioner, are active software components,
1313
others are simply identifiers within the Queue service's data structures. For
@@ -16,26 +16,26 @@ example, there is no active management of the
1616
`provisionerId`.
1717

1818
Provisioners can be declared, and metadata associated with them, via the
19-
[declareProvisioner](/reference/platform/taskcluster-queue/references/api#declareProvisioner)
19+
[declareProvisioner](/docs/reference/platform/taskcluster-queue/references/api#declareProvisioner)
2020
API method.
2121

2222
## Worker Types
2323

24-
[Worker Types](/manual/tasks/workertypes), identified by
24+
[Worker Types](/docs/manual/tasks/workertypes), identified by
2525
`provisionerId/workerType`, are nested under a single provisioner and gather
2626
interchangeable workers that can all perform the same work. Tasks are queued
2727
for a specific worker type, and workers claim work for a single worker type.
2828

2929
Worker types can be declared, and metadata associated with them, via the
30-
[declareWorkerType](/reference/platform/taskcluster-queue/references/api#declareWorkerType)
30+
[declareWorkerType](/docs/reference/platform/taskcluster-queue/references/api#declareWorkerType)
3131
API method.
3232

3333
## Workers
3434

35-
[Workers](/manual/task-execution/workers) are the entities that actually
35+
[Workers](/docs/manual/task-execution/workers) are the entities that actually
3636
perform work, and are identified by `workerGroup/workerId`. A worker claims and
3737
performs work from a single worker type.
3838

3939
Workers can be declared, and metadata associated with them, via the
40-
[declareWorker](/reference/platform/taskcluster-queue/references/api#declareWorker)
40+
[declareWorker](/docs/reference/platform/taskcluster-queue/references/api#declareWorker)
4141
API method.

schemas/constants.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ action-description: |
121121
| worker-type | Workers Explorer |
122122
| worker | Worker Explorer |
123123
124-
See [actions docs](https://docs.taskcluster.net/reference/platform/taskcluster-queue/docs/actions)
124+
See [actions docs](/docs/reference/platform/taskcluster-queue/docs/actions)
125125
for more information.
126126
127127
# Description of the url property in an action.

schemas/v1/actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
$schema: http://json-schema.org/draft-06/schema#
22
title: "Actions"
33
description: |
4-
See taskcluster [actions](https://docs.taskcluster.net/reference/platform/taskcluster-queue/docs/actions) documentation.
4+
See taskcluster [actions](/docs/reference/platform/taskcluster-queue/docs/actions) documentation.
55
type: array
66
items:
77
type: object

0 commit comments

Comments
 (0)