Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ additional cloud accounts that reference specific PCGs.
Gateway**. To learn more about when you would use Palette's PCG or the System Private Gateway, refer to the
[PCG Architecture](../../pcg/architecture.md#pcg-deployment-options) page.

- An active [MAAS API key](https://maas.io/docs/api) which can be generated in the MAAS web console under **My
Preferences**, and selecting **API keys**.
- An active [MAAS API key](https://canonical.com/maas/docs/reference) which can be generated in the MAAS web console
under **My Preferences**, and selecting **API keys**.

For details, refer to the MAAS document on
[how to add an API key](https://canonical.com/maas/docs/how-to-enhance-maas-security#p-9102-manage-api-keys).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ stages:

#### Configure Network With Netplan

You can use the `initramfs` stage and [Netplan](https://netplan.io) to configure network settings before the network
You can use the `initramfs` stage and [Netplan](https://netplan.io/) to configure network settings before the network
initialization. Netplan is a tool that enables you to specify network configurations on Linux systems. Note that this
approach is available for Linux systems with Netplan installed. Refer to the
[Netplan Documentation](https://netplan.readthedocs.io/en/stable/) for installation guidance and the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ installation. Refer to the [Site Parameters](#site-parameters) for a list of all
:::info

The `#cloud-config` value is a required cloud-init header required by the
[cloud-init](https://cloudinit.readthedocs.io/en/latest/explanation/format.html) standard.
[cloud-init](https://cloudinit.readthedocs.io/en/latest/reference/index.html) standard.

:::

Expand Down
5 changes: 4 additions & 1 deletion linkinator/linkinator-ci.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@
"^https://www.freedesktop.org.*$$",
"^https://docs.openstack.org.*$$",
"^https://(www\\.)?upwind\\.io.*$$",
"^https://(www\\.)?wiz\\.io.*$$"
"^https://(www\\.)?wiz\\.io.*$$",
"^https://cloudinit\\.readthedocs\\.io.*$$",
"^https://netplan\\.io.*$$",
"^https://canonical\\.com.*$$"
],
"verbosity": "error",
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36"
Expand Down
5 changes: 4 additions & 1 deletion linkinator/linkinator-rate-limit-ci.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@
"^https://www.freedesktop.org.*$$",
"^https://docs.openstack.org.*$$",
"^https://(www\\.)?upwind\\.io.*$$",
"^https://(www\\.)?wiz\\.io.*$$"
"^https://(www\\.)?wiz\\.io.*$$",
"^https://cloudinit\\.readthedocs\\.io.*$$",
"^https://netplan\\.io.*$$",
"^https://canonical\\.com.*$$"
],
"verbosity": "error",
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36"
Expand Down
5 changes: 4 additions & 1 deletion linkinator/linkinator-rate-limit.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@
"^https://www.freedesktop.org.*$$",
"^https://docs.openstack.org.*$$",
"^https://(www\\.)?upwind\\.io.*$$",
"^https://(www\\.)?wiz\\.io.*$$"
"^https://(www\\.)?wiz\\.io.*$$",
"^https://cloudinit\\.readthedocs\\.io.*$$",
"^https://netplan\\.io.*$$",
"^https://canonical\\.com.*$$"
],
"verbosity": "error",
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36"
Expand Down
5 changes: 4 additions & 1 deletion linkinator/linkinator.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@
"^https://www.freedesktop.org.*$$",
"^https://docs.openstack.org.*$$",
"^https://(www\\.)?upwind\\.io.*$$",
"^https://(www\\.)?wiz\\.io.*$$"
"^https://(www\\.)?wiz\\.io.*$$",
"^https://cloudinit\\.readthedocs\\.io.*$$",
"^https://netplan\\.io.*$$",
"^https://canonical\\.com.*$$"
],
"verbosity": "error",
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36"
Expand Down
3 changes: 3 additions & 0 deletions scripts/url-checker-developer-portals.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ DEVELOPER_PORTAL_LINKS=(
"linux\.die\.net",
"mysql\.com",
"dev\.mysql\.com",
"cloudinit\.readthedocs\.io",
"netplan\.io",
"canonical\.com",
)
LINKS_FILE="all_links.txt"
BROKEN_LINKS_FILE="link_report_developer_portals.txt"
Expand Down