Skip to content

Commit 49a6a68

Browse files
authored
Remove legal notice links, duplicated ARC intro (#56759)
1 parent 2143787 commit 49a6a68

17 files changed

+0
-40
lines changed

content/actions/concepts/runners/about-actions-runner-controller.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ redirect_from:
1313
- /actions/hosting-your-own-runners/managing-self-hosted-runners-with-actions-runner-controller/about-actions-runner-controller
1414
---
1515

16-
[Legal notice](#legal-notice)
17-
1816
## About {% data variables.product.prodname_actions_runner_controller %}
1917

2018
{% data reusables.actions.actions-runner-controller-about-arc %}

content/actions/concepts/runners/about-runner-scale-sets.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ topics:
1212
- Actions Runner Controller
1313
---
1414

15-
[Legal notice](#legal-notice)
16-
1715
## About runner scale sets
1816

1917
A runner scale set is a group of homogeneous runners that can be assigned jobs from {% data variables.product.prodname_actions %}. The number of active runners owned by a runner scale set can be controlled by auto-scaling runner solutions such as {% data variables.product.prodname_actions_runner_controller %} (ARC).

content/actions/reference/extending-github-actions-importer-with-custom-transformers.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ redirect_from:
1717
- /actions/how-tos/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/extending-github-actions-importer-with-custom-transformers
1818
---
1919

20-
[Legal notice](#legal-notice)
21-
2220
## About custom transformers
2321

2422
{% data variables.product.prodname_actions_importer %} offers the ability to extend its built-in mapping by creating custom transformers. Custom transformers can be used to:

content/actions/reference/supplemental-arguments-and-settings.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ redirect_from:
1515
- /actions/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/supplemental-arguments-and-settings
1616
---
1717

18-
[Legal notice](#legal-notice)
19-
2018
This article provides general information for configuring {% data variables.product.prodname_actions_importer %}'s supplemental arguments and settings, such as optional parameters, path arguments, and network settings.
2119

2220
## Optional parameters

content/actions/tutorials/actions-runner-controller/authenticating-arc-to-the-github-api.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ redirect_from:
1515
- /actions/how-tos/hosting-your-own-runners/managing-self-hosted-runners-with-actions-runner-controller/authenticating-to-the-github-api#deploying-using-personal-access-token-classic-authentication
1616
---
1717

18-
[Legal notice](#legal-notice)
19-
2018
You can authenticate {% data variables.product.prodname_actions_runner_controller %} (ARC) to the {% data variables.product.prodname_dotcom %} API by using a {% data variables.product.prodname_github_app %} or by using a {% data variables.product.pat_v1 %}.
2119

2220
> [!NOTE]

content/actions/tutorials/actions-runner-controller/deploying-runner-scale-sets-with-actions-runner-controller.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ redirect_from:
1515
- /actions/how-tos/hosting-your-own-runners/managing-self-hosted-runners-with-actions-runner-controller/deploying-runner-scale-sets-with-actions-runner-controller
1616
---
1717

18-
[Legal notice](#legal-notice)
19-
2018
## Deploying a runner scale set
2119

2220
To deploy a runner scale set, you must have ARC up and running. For more information, see [AUTOTITLE](/actions/hosting-your-own-runners/managing-self-hosted-runners-with-actions-runner-controller/quickstart-for-actions-runner-controller).

content/actions/tutorials/actions-runner-controller/quickstart-for-actions-runner-controller.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,6 @@ redirect_from:
1515
- /actions/tutorials/quickstart-for-actions-runner-controller
1616
---
1717

18-
[Legal notice](#legal-notice)
19-
20-
## Introduction
21-
22-
{% data reusables.actions.actions-runner-controller-about-arc %}
23-
24-
You can set up ARC on Kubernetes using Helm, then create and run a workflow that uses runner scale sets. For more information about runner scale sets, see [AUTOTITLE](/actions/hosting-your-own-runners/managing-self-hosted-runners-with-actions-runner-controller/deploying-runner-scale-sets-with-actions-runner-controller#runner-scale-set).
25-
2618
## Prerequisites
2719

2820
In order to use ARC, ensure you have the following.

content/actions/tutorials/actions-runner-controller/troubleshooting-actions-runner-controller-errors.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ redirect_from:
1414
- /actions/how-tos/hosting-your-own-runners/managing-self-hosted-runners-with-actions-runner-controller/troubleshooting-actions-runner-controller-errors
1515
---
1616

17-
[Legal notice](#legal-notice)
18-
1917
## Logging
2018

2119
The {% data variables.product.prodname_actions_runner_controller %} (ARC) resources, which include the controller, listener, and runners, write logs to standard output (`stdout`). We recommend you implement a logging solution to collect and store these logs. Having logs available can help you or GitHub support with troubleshooting and debugging. For more information, see [Logging Architecture](https://kubernetes.io/docs/concepts/cluster-administration/logging/) in the Kubernetes documentation.

content/actions/tutorials/actions-runner-controller/using-actions-runner-controller-runners-in-a-workflow.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ redirect_from:
1515
- /actions/how-tos/hosting-your-own-runners/managing-self-hosted-runners-with-actions-runner-controller/using-actions-runner-controller-runners-in-a-workflow
1616
---
1717

18-
[Legal notice](#legal-notice)
19-
2018
## Using ARC runners in a workflow file
2119

2220
To assign jobs to run on a runner scale set, you can specify the name of the scale set as the value for the `runs-on` key in your {% data variables.product.prodname_actions %} workflow file.

content/actions/tutorials/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/automating-migration-with-github-actions-importer.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ shortTitle: 'Automate migration with {% data variables.product.prodname_actions_
2020

2121
{% data reusables.actions.enterprise-github-hosted-runners %}
2222

23-
[Legal notice](#legal-notice)
24-
2523
## About {% data variables.product.prodname_actions_importer %}
2624

2725
You can use {% data variables.product.prodname_actions_importer %} to plan and automatically migrate your CI/CD supported pipelines to {% data variables.product.prodname_actions %}.

0 commit comments

Comments
 (0)