Skip to content

Commit

Permalink
Merge pull request #52 from redkubes/seo-fix-404s
Browse files Browse the repository at this point in the history
Fix more redirects and 404 errors
  • Loading branch information
dennisvankekem authored Feb 5, 2024
2 parents 6432e36 + f600622 commit f23a070
Show file tree
Hide file tree
Showing 7 changed files with 424 additions and 479 deletions.
95 changes: 0 additions & 95 deletions docs/get-started/chart.md

This file was deleted.

6 changes: 3 additions & 3 deletions docs/get-started/installation/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ As of version [1.0.0](https://github.com/redkubes/otomi-core/releases/tag/v0.21.
:::

:::info
The Otomi [Builds](../../for-devs/console/builds.md) and [Projects](../../for-devs/console/projects.md) features and using Harbor for private registries is NOT supported when Otomi is installed with minimal configuration. Install Otomi [with DNS](#install-otomi-with-dns) to use all Otomi features.
The Otomi [Builds](../../for-devs/console/builds.md) and [Projects](../../for-devs/console/projects.md) features and using Harbor for private registries is NOT supported when Otomi is installed with minimal configuration. Install Otomi with DNS to use all Otomi features.
:::

```yaml
Expand All @@ -31,7 +31,7 @@ cluster:
provider: # choose between aws, azure, google, digitalocean, ovh, vultr, scaleway or custom
```
When the chart is installed, follow the [activation steps](../../get-started/activation.md).
When the chart is installed, follow the [activation steps](../../get-started/activation.md).
<!-- Part of the activation is to register your cluster in [Otomi Cloud](https://portal.otomi.cloud) and download a Community Edition License to use Otomi Console and Otomi API. You can also first create a license key and add it to the chart values:
Expand Down Expand Up @@ -114,4 +114,4 @@ Doing a Helm uninstall will remove all Helm releases deployed by Otomi. After un

```
for ns in $(kubectl get ns --field-selector status.phase=Terminating -o jsonpath='{.items[*].metadata.name}'); do kubectl get ns $ns -ojson | jq '.spec.finalizers = []' | kubectl replace --raw "/api/v1/namespaces/$ns/finalize" -f -; done
```
```
2 changes: 1 addition & 1 deletion docs/tutorials/tutorial-3.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Otomi by default installs a minimal set of core applications. With the Core apps

## Optional Apps

Next to the Core apps, Otomi offers optional apps like Knative, Harbor, Vault, Kubeapps, Prometheus, Loki, Alertmanager, and more. These apps are all fully integrated and can be activated by dragging them to the active apps section in the Console.
Next to the Core apps, Otomi offers optional apps like Knative, Harbor, Vault, Prometheus, Loki, Alertmanager, and more. These apps are all fully integrated and can be activated by dragging them to the active apps section in the Console.

In this lab we are going to activate Loki for logging.

Expand Down
9 changes: 5 additions & 4 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ module.exports = {
[
"@docusaurus/plugin-client-redirects",
{
redirects: redirects.concat(
redirects.map((r) => ({ from: `/otomi${r.from}`, to: r.to }))
),
redirects: redirects.map((r) => ({
from: r.from.concat(r.from.map((f) => (`/otomi${f}`))),
to: r.to,
})),
createRedirects(existingPath) {
return [`/otomi${existingPath}`];
},
Expand Down Expand Up @@ -125,7 +126,7 @@ module.exports = {
position: "left",
},
{
to: "https://redkubes.com/pricing-otomi-subscriptions/",
to: "https://www.redkubes.com/kubernetes-platform/pricing",
label: "Support",
position: "left",
},
Expand Down
Loading

0 comments on commit f23a070

Please sign in to comment.