Skip to content

Commit 7522cbe

Browse files
authored
[HWORKS-899] FIX: links and adding CI check for broken links (#339)
1 parent d2878d2 commit 7522cbe

File tree

14 files changed

+47
-16
lines changed

14 files changed

+47
-16
lines changed

.github/workflows/mkdocs-test.yml

+15-1
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,26 @@ jobs:
2020
run: sudo apt-get install -y libxml2-dev libxslt-dev
2121

2222
- name: install deps
23-
run: pip3 install pip==22.0.3 && pip3 install 'git+https://github.com/logicalclocks/feature-store-api@master#egg=hsfs[docs]&subdirectory=python' mkdocs-minify-plugin
23+
run: pip3 install pip==22.0.3 && pip3 install 'git+https://github.com/logicalclocks/feature-store-api@master#egg=hsfs[docs]&subdirectory=python' mkdocs-minify-plugin linkchecker
2424

2525
- name: setup git
2626
run: |
2727
git config --global user.name Mike
2828
git config --global user.email mike@docs.hopsworks.ai
2929
30+
- name: test broken links
31+
run: |
32+
# run the server
33+
mkdocs serve > /dev/null 2>&1 &
34+
SERVER_PID=$!
35+
echo "mk server in PID $SERVER_PID"
36+
# Give enough time for deployment
37+
sleep 30
38+
echo "Launching linkchecker"
39+
linkchecker --no-warnings --no-status http://127.0.0.1:8000/
40+
41+
# If ok just kill the server
42+
kill -9 $SERVER_PID
43+
3044
- name: mike deploy docs
3145
run: mike deploy 3.2-SNAPSHOT dev -u

README.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,20 @@ The documentation should now be available locally on the following URL: http://1
4747
## Adding new pages
4848

4949
The `mkdocs.yml` file of this repository defines the pages to show in the navigation.
50-
After adding your new page in the docs folder, you also need to add it to this file for it to show up in the navigation.
50+
After adding your new page in the docs folder, you also need to add it to this file for it to show up in the navigation.
51+
52+
## Checking links
53+
54+
``` bash
55+
# run the server
56+
mkdocs serve > /dev/null 2>&1 &
57+
SERVER_PID=$!
58+
echo "mk server in PID $SERVER_PID"
59+
# Give enough time for serving
60+
sleep 30
61+
echo "Launching linkchecker"
62+
linkchecker http://127.0.0.1:8000/
63+
64+
# If ok just kill the server
65+
kill -9 $SERVER_PID
66+
```

docs/admin/alert.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ button on the left side of the **email** row and fill out the form that pops up.
3434
CRAM-MD5, LOGIN or PLAIN.
3535

3636
Optionally cluster wide Email alert receivers can be added in _Default receiver emails_.
37-
These receivers will be available to all users when they create event triggered [alerts](../../user_guides/projects/jobs/alert).
37+
These receivers will be available to all users when they create event triggered [alerts](../../user_guides/fs/feature_group/advanced_data_validation/#setup-alerts).
3838

3939
### Step 3: Configure Slack Alerts
4040
Alerts can also be sent via Slack messages. To be able to send Slack messages you first need to configure
@@ -47,7 +47,7 @@ a Slack webhook. Click on the _Configure_ button on the left side of the **slack
4747
</figure>
4848

4949
Optionally cluster wide Slack alert receivers can be added in _Slack channel/user_.
50-
These receivers will be available to all users when they create event triggered [alerts](../../user_guides/projects/jobs/alert).
50+
These receivers will be available to all users when they create event triggered [alerts](../../user_guides/fs/feature_group/advanced_data_validation/#setup-alerts).
5151

5252
### Step 4: Configure Pagerduty Alerts
5353
Pagerduty is another way you can send alerts from Hopsworks. Click on the _Configure_ button on the left side of
@@ -93,7 +93,7 @@ global:
9393
...
9494
```
9595

96-
To test the alerts by creating triggers from Jobs and Feature group validations see [Alerts](../../user_guides/projects/jobs/alert).
96+
To test the alerts by creating triggers from Jobs and Feature group validations see [Alerts](../../user_guides/fs/feature_group/advanced_data_validation/#setup-alerts).
9797

9898
The yaml syntax in the UI is slightly different in that it does not allow double quotes (it will ignore the values but give no error).
9999
Below is an example configuration, that can be used in the UI, with both email and slack receivers configured for system alerts.
Loading
119 KB
Loading

docs/setup_installation/aws/cluster_creation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Refer to [Create a VPC](restrictive_permissions.md#step-1-create-a-vpc) for more
149149
</p>
150150

151151
!!! note
152-
If the VPC uses a custom domain read our [guide](custom_domain_name.md) on how to set this up
152+
If the VPC uses a custom domain read our [guide](./custom_domain_name.md) on how to set this up
153153

154154
### Step 9 Availability Zone selection
155155
If you selected an existing VPC in the previous step, this step lets you select which availability zone of this VPC to use.

docs/setup_installation/aws/custom_domain_name.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ in a configured Route 53 hosted zone.
5151

5252
!!! warning
5353
If you want the VM to register itself with Route 53 you **must** amend the
54-
[Instance Profile](cluster_creation/#step-5-select-the-instance-profile) with the following permissions
54+
[Instance Profile](../cluster_creation) with the following permissions
5555

5656
```json
5757
{

docs/setup_installation/aws/troubleshooting.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ If you encounter the following error right after creating your cluster, then the
4141

4242
This issue could be caused by one of the following:
4343

44-
* The [instance profile that you have chosen during cluster creation](cluster_creation/#step-5-select-the-instance-profile) is actually missing the permissions stated in the error on your [chosen S3 bucket](cluster_creation/#step-2-setting-the-general-information). Then in that case, update your instance profile accordingly and then click *Retry* to retry cluster creation operation.
44+
* The [instance profile that you have chosen during cluster creation](../cluster_creation/#step-5-select-the-instance-profile) is actually missing the permissions stated in the error on your [chosen S3 bucket](../cluster_creation/#step-2-setting-the-general-information). Then in that case, update your instance profile accordingly and then click *Retry* to retry cluster creation operation.
4545

4646
* Your AWS organization is using [SCPs policy](https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scps.html) that disallow policy simulation. In that case, you could do a simple test to confirm the issue by using [the AWS PolicySim on AWS console](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_testing-policies.html). If policy simulation is disallowed, you can configure managed.hopsworks.ai to skip the policy simulation step by removing the `iam:SimulatePrincipalPolicy` permission from [your cross account role](../getting_started/#step-1-connecting-your-aws-account), by navigating to the [AWS Roles console](https://us-east-1.console.aws.amazon.com/iamv2/home#/roles), search for your cross account role name and click on it, on the permissions tab click edit on hopsworks inline policy, choose JSON tab, remove `iam:SimulatePrincipalPolicy`, click *Review Policy*, and then click *Save Changes*, and finally navigate back to managed.hopsworks.ai and click *Retry* to retry the cluster creation.

docs/user_guides/integrations/emr/emr_configuration.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Then click on the secret in the secrets list and take note of the *Secret ARN*.
3434

3535
<p align="center">
3636
<figure>
37-
<img src="../../../../assets/images/guides/integrations/images/emr/secrets_manager.png" alt="Name the secret">
37+
<img src="../../../../assets/images/guides/integrations/emr/secrets_manager.png" alt="Name the secret">
3838
<figcaption>Name the secret</figcaption>
3939
</figure>
4040
</p>
@@ -173,7 +173,7 @@ sudo pip3 install --upgrade hsfs~=X.X.0
173173

174174
<p align="center">
175175
<figure>
176-
<img src="../../../../assets/images/guides/integrations/hopsworks-version.png" alt="HSFS version needs to match the major version of Hopsworks">
176+
<img src="../../../../assets/images/hopsworks-version.png" alt="HSFS version needs to match the major version of Hopsworks">
177177
<figcaption>To find your Hopsworks version, enter any of your projects and go to the settings tab inside your project.</figcaption>
178178
</figure>
179179
</p>

docs/user_guides/integrations/hdinsight.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The script action needs to be applied head and worker nodes and can be applied d
3131

3232
<p align="center">
3333
<figure>
34-
<img src="../../../assets/images/guides/integrations/hopsworks-version.png" alt="HSFS version needs to match the major version of Hopsworks">
34+
<img src="../../../../assets/images/hopsworks-version.png" alt="HSFS version needs to match the major version of Hopsworks">
3535
<figcaption>You find the Hopsworks version inside any of your Project's settings tab on Hopsworks</figcaption>
3636
</figure>
3737
</p>

docs/user_guides/integrations/mlstudio_designer.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ To connect to the Feature Store from the Azure Machine Learning Designer, create
2121

2222
<p align="center">
2323
<figure>
24-
<img src="../../../assets/images/guides/integrations/azure/designer/step-1.png" alt="Add an Execute Python Script step">
24+
<img src="../../../../assets/images/guides/integrations/azure/designer/step-1.png" alt="Add an Execute Python Script step">
2525
<figcaption>Add an Execute Python Script step</figcaption>
2626
</figure>
2727
</p>
@@ -41,7 +41,7 @@ In the pipeline, add a new `Execute Python Script` step and replace the Python s
4141

4242
<p align="center">
4343
<figure>
44-
<img src="../../assets/images/hopsworks-version.png" alt="HSFS version needs to match the major version of Hopsworks">
44+
<img src="../../../assets/images/hopsworks-version.png" alt="HSFS version needs to match the major version of Hopsworks">
4545
<figcaption>You find the Hopsworks version inside any of your Project's settings tab on Hopsworks</figcaption>
4646
</figure>
4747
</p>

docs/user_guides/integrations/mlstudio_notebooks.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ To access the Feature Store from Azure Machine Learning, open a Python notebook
2121

2222
<p align="center">
2323
<figure>
24-
<img src="../../../assets/images/guides/integrations/azure/notebooks/step-1.png" alt="Connecting from an Azure Machine Learning Notebook">
24+
<img src="../../../../assets/images/guides/integrations/azure/notebooks/step-1.png" alt="Connecting from an Azure Machine Learning Notebook">
2525
<figcaption>Connecting from an Azure Machine Learning Notebook</figcaption>
2626
</figure>
2727
</p>
@@ -43,7 +43,7 @@ To be able to access the Hopsworks Feature Store, the `HSFS` Python library need
4343

4444
<p align="center">
4545
<figure>
46-
<img src="../../assets/images/hopsworks-version.png" alt="HSFS version needs to match the major version of Hopsworks">
46+
<img src="../../../assets/images/hopsworks-version.png" alt="HSFS version needs to match the major version of Hopsworks">
4747
<figcaption>You find the Hopsworks version inside any of your Project's settings tab on Hopsworks</figcaption>
4848
</figure>
4949
</p>

docs/user_guides/integrations/python.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The **major version of `HSFS`** needs to match the **major version of Hopsworks*
2020

2121
<p align="center">
2222
<figure>
23-
<img src="../../../../assets/images/guides/integrations/hopsworks-version.png" alt="HSFS version needs to match the major version of Hopsworks">
23+
<img src="../../../../assets/images/hopsworks-version.png" alt="HSFS version needs to match the major version of Hopsworks">
2424
<figcaption>You find the Hopsworks version inside any of your Project's settings tab on Hopsworks</figcaption>
2525
</figure>
2626
</p>

mkdocs.yml

+1
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ nav:
188188
- Cluster Creation: setup_installation/aws/cluster_creation.md
189189
- EKS integration: setup_installation/aws/eks_ecr_integration.md
190190
- Limiting Permissions: setup_installation/aws/restrictive_permissions.md
191+
- Custom Domain: setup_installation/aws/custom_domain_name.md
191192
- Cluster upgrade:
192193
- Version 3.0 or newer: setup_installation/aws/upgrade_3.0.md
193194
- Version 2.4 or newer: setup_installation/aws/upgrade_2.4.md

0 commit comments

Comments
 (0)