Skip to content

Commit bd44e8e

Browse files
committed
Merge branch 'master' into docs-rel-4-8-b
2 parents b59892e + c4ad2cd commit bd44e8e

File tree

34 files changed

+9114
-24035
lines changed

34 files changed

+9114
-24035
lines changed

.github/workflows/clean-up-unused-images.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# This workflow removed unused images from the repository and creates a PR to clean them up.
2-
# The workflow runs on the first day of every month at 2 am UTC.
2+
# The workflow runs on the first day of every month at 12PM UTC.
33
# Any image that is not referenced in the repository is considered unused.
44
# This workflow supports on-demand execution using the workflow_dispatch event.
55

66
name: Clean Up Unused Images
77

88
on:
99
schedule:
10-
# On the first of every month at 2 am
11-
- cron: '0 2 1 * *'
10+
# On the first of every month at 12 PM UTC
11+
- cron: '0 12 1 * *'
1212
workflow_dispatch:
1313

1414
concurrency:

.github/workflows/post_release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
gh-token: ${{ secrets.GITHUB_TOKEN }}
6464

6565
- name: Upload Build Packs
66-
uses: actions/upload-artifact@v5
66+
uses: actions/upload-artifact@v6
6767
with:
6868
name: "build-packs"
6969
path: |
@@ -73,7 +73,7 @@ jobs:
7373
retention-days: 7
7474

7575
- name: Upload Built Security Bulletins
76-
uses: actions/upload-artifact@v5
76+
uses: actions/upload-artifact@v6
7777
with:
7878
name: "security-bulletins"
7979
path: .docusaurus/security-bulletins/default/data.json

.github/workflows/screenshot_capture.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272

7373
- name: Upload Build
7474
if: ${{ env.BUILD_EXIT_CODE == '0' }}
75-
uses: actions/upload-artifact@v5
75+
uses: actions/upload-artifact@v6
7676
with:
7777
name: "build"
7878
path: |
@@ -115,7 +115,7 @@ jobs:
115115
uses: Wandalen/wretry.action@v3
116116
with:
117117
attempt_limit: 3
118-
action: actions/download-artifact@v6
118+
action: actions/download-artifact@v7
119119
with: |
120120
name: build
121121
path: build
@@ -125,7 +125,7 @@ jobs:
125125
run: npx playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} || exit 0
126126

127127
- name: Upload Screenshots
128-
uses: actions/upload-artifact@v5
128+
uses: actions/upload-artifact@v6
129129
id: screenshots
130130
with:
131131
name: screenshots-${{ matrix.shardIndex }}
@@ -141,14 +141,14 @@ jobs:
141141
steps:
142142

143143
- name: Download blob reports from GitHub Actions Artifacts
144-
uses: actions/download-artifact@v6
144+
uses: actions/download-artifact@v7
145145
with:
146146
path: screenshots
147147
pattern: screenshots-*
148148
merge-multiple: true
149149

150150
- name: Upload Screenshots
151-
uses: actions/upload-artifact@v5
151+
uses: actions/upload-artifact@v6
152152
id: screenshots
153153
with:
154154
name: "screenshots"

.github/workflows/spellcheck-report.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# This workflow runs the set of core vale checks on the entire repo.
2-
# The workflow runs every Monday at 8 am UTC.
2+
# The workflow runs every Monday at 4PM UTC.
33
# This workflow supports on-demand execution using the workflow_dispatch event.
44

55
name: Spellcheck Entire Librarium
66
on:
77
schedule:
8-
# Every Monday at 8AM UTC
9-
- cron: '0 8 * * 1'
8+
# Every Monday at 4PM UTC
9+
- cron: '0 16 * * 1'
1010
workflow_dispatch:
1111

1212
concurrency:
@@ -86,7 +86,7 @@ jobs:
8686
8787
- name: Upload Vale Results
8888
if: ${{ env.VALE_ERRORS_FOUND == 'true'}}
89-
uses: actions/upload-artifact@v5
89+
uses: actions/upload-artifact@v6
9090
with:
9191
name: "vale-spellcheck-results"
9292
path: vale-spellcheck-results.txt

.github/workflows/url-checks.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# This workflow scans the markdown files in the repository for broken URLs.
22
# Additional logic is added to the Make command verify-rate-limited-links-ci to check for rate-limited URLs, including guidance on what domains to ignore.
3-
# The workflow is scheduled to run every Monday at 6 am.
3+
# The workflow is scheduled to run every Monday at 2PM UTC.
44

55
on:
66
schedule:
7-
# Every Monday at 6 am
8-
- cron: '0 6 * * 1'
7+
# Every Monday at 2PM UTC
8+
- cron: '0 14 * * 1'
99
workflow_dispatch:
1010

1111

.github/workflows/visual-comparison.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
gh-token: ${{ secrets.GITHUB_TOKEN }}
103103

104104
- name: Upload Build
105-
uses: actions/upload-artifact@v5
105+
uses: actions/upload-artifact@v6
106106
with:
107107
name: "build"
108108
path: |
@@ -145,7 +145,7 @@ jobs:
145145
uses: Wandalen/wretry.action@v3
146146
with:
147147
attempt_limit: 3
148-
action: actions/download-artifact@v6
148+
action: actions/download-artifact@v7
149149
with: |
150150
name: build
151151
path: build
@@ -158,7 +158,7 @@ jobs:
158158
run: npx playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} || exit 0
159159

160160
- name: Upload blob report to GitHub Actions Artifacts
161-
uses: actions/upload-artifact@v5
161+
uses: actions/upload-artifact@v6
162162
with:
163163
name: blob-report-${{ matrix.shardIndex }}
164164
path: blob-report
@@ -187,7 +187,7 @@ jobs:
187187
attempt_delay: 60000 # 1 minute
188188

189189
- name: Download blob reports from GitHub Actions Artifacts
190-
uses: actions/download-artifact@v6
190+
uses: actions/download-artifact@v7
191191
with:
192192
path: all-blob-reports
193193
pattern: blob-report-*
@@ -197,7 +197,7 @@ jobs:
197197
run: npx playwright merge-reports --reporter html ./all-blob-reports
198198

199199
- name: Upload Report
200-
uses: actions/upload-artifact@v5
200+
uses: actions/upload-artifact@v6
201201
id: report
202202
with:
203203
name: "report"
@@ -232,7 +232,7 @@ jobs:
232232
echo "HTML_REPORT_URL_PATH=reports/$BRANCH_SAFE/${{ github.run_id }}/${{ github.run_attempt }}" >> $GITHUB_ENV
233233
234234
- name: Download zipped HTML report
235-
uses: actions/download-artifact@v6
235+
uses: actions/download-artifact@v7
236236
with:
237237
name: report
238238
path: ${{ env.HTML_REPORT_URL_PATH }}

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build
66

77
# Generated files
88
.docusaurus
9-
.cache-loader
9+
.cache-loaderx
1010

1111
# Misc
1212
.env
@@ -37,8 +37,10 @@ palette-docs.pdf
3737

3838
docs/api-content/api-docs/v1/*.mdx
3939
docs/api-content/api-docs/v1/sidebar.*
40+
docs/api-content/api-docs/v1/*.json
4041
docs/api-content/api-docs/edge-v1/*.mdx
4142
docs/api-content/api-docs/edge-v1/sidebar.*
43+
docs/api-content/api-docs/edge-v1/*.json
4244

4345
# Security Bulletins (Autogenerated)
4446

_partials/self-hosted/feature-flags/_feature-flags-intro.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The following table lists all available feature flags and their supported platfo
1717
| ---------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :-----------------: | :------------------------: |
1818
| **AwsSecretPartition** | Configure [AWS Secret Cloud](https://aws.amazon.com/federal/secret-cloud/) and [AWS Top Secret Cloud](https://aws.amazon.com/federal/top-secret-cloud/) accounts and deploy EKS clusters in AWS Secret and Top Secret clouds. Refer to our [Register and Manage AWS Accounts](/clusters/public-cloud/aws/add-aws-accounts) guide for more information. | :x: | :white_check_mark: |
1919
| **AzureUSSecretCloud** | Configure [Azure Government Secret cloud](https://azure.microsoft.com/en-us/explore/global-infrastructure/government/national-security) accounts and deploy Azure IaaS clusters in Azure Government Secret cloud. Refer to our [Register and Manage Azure Accounts](/clusters/public-cloud/azure/azure-cloud/#azure-government-secret-cloud) guide for more information. | :x: | :white_check_mark: |
20-
| **LxdMaas** | Spawn multiple control plane nodes as LXD VMs and consolidate them on MAAS-managed servers while your worker nodes run on bare metal devices. Refer to our [Create and Manage MAAS Clusters Using LXD VMs](/clusters/data-center/maas/create-manage-maas-lxd-clusters/) /> guide for more information. | :white_check_mark: | :white_check_mark: |
20+
| **LxdMaas** | Spawn multiple control plane nodes as LXD VMs and consolidate them on MAAS-managed servers while your worker nodes run on bare metal devices. Refer to our [Create and Manage MAAS Clusters Using LXD VMs](/clusters/data-center/maas/create-manage-maas-lxd-clusters/) guide for more information. | :white_check_mark: | :white_check_mark: |
2121
| **ApacheCloudStack** | Allows for the creation of workloads on Apache CloudStack. Refer to our [Create and Manage Apache CloudStack Clusters](/clusters/data-center/cloudstack/create-manage-cloudstack-clusters/) guide for more information. | :white_check_mark: | :white_check_mark: |
2222

2323

0 commit comments

Comments
 (0)