-
Notifications
You must be signed in to change notification settings - Fork 441
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix doc link reference in setupscaler.md #1502
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Sebastian Struß <[email protected]>
Thank you for your contribution! 🙏 We will review your PR as soon as possible.
Learn more about:
|
✅ Deploy Preview for keda ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good catch! Thank you for fixing this, can you also please address this under 2.15
version of the docs?
- Follow the [KEDA installation guide](https://keda.sh/docs/2.14/deploy/) carefully, including any prerequisites specific to your Kubernetes setup. |
1. Visit the [KEDA Scalers documentation](https://keda.sh/docs/2.14/scalers/) and browse through the list of available scalers. |
@@ -12,7 +12,7 @@ description = "Procedure to Setup a Scaler in KEDA" | |||
|
|||
2. **KEDA Installation**: | |||
- KEDA needs to be installed on your Kubernetes cluster before you can use it. | |||
- Follow the [KEDA installation guide](https://keda.sh/docs/2.14/deploy/) carefully, including any prerequisites specific to your Kubernetes setup. | |||
- Follow the [KEDA installation guide](https://keda.sh/docs/deploy/) carefully, including any prerequisites specific to your Kubernetes setup. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: I think it might be even better to use relative path
- Follow the [KEDA installation guide](https://keda.sh/docs/deploy/) carefully, including any prerequisites specific to your Kubernetes setup. | |
- Follow the [KEDA installation guide](../deploy/) carefully, including any prerequisites specific to your Kubernetes setup. |
@@ -24,7 +24,7 @@ description = "Procedure to Setup a Scaler in KEDA" | |||
|
|||
KEDA supports various scalers that correspond to different event sources or triggers. Determining the right scaler is crucial for scaling your application based on the desired event source. | |||
|
|||
1. Visit the [KEDA Scalers documentation](https://keda.sh/docs/2.14/scalers/) and browse through the list of available scalers. | |||
1. Visit the [KEDA Scalers documentation](https://keda.sh/docs/scalers/) and browse through the list of available scalers. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1. Visit the [KEDA Scalers documentation](https://keda.sh/docs/scalers/) and browse through the list of available scalers. | |
1. Visit the [KEDA Scalers documentation](../scalers/) and browse through the list of available scalers. |
Two links contained specific keda versions, one of them even not being the latest one.
I removed the version numbers, as the website redirects to the latest docs in this case.
Checklist