Skip to content

Commit

Permalink
Fixing broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmadigan committed Mar 13, 2024
1 parent a859962 commit 4f7cbea
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 30 deletions.
23 changes: 20 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
name: ci
name: CI

on:
workflow_dispatch:
push:
branches:
- master
- main
pull_request:
branches:
- main

permissions:
contents: write

jobs:
deploy:
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -23,4 +29,15 @@ jobs:
restore-keys: |
mkdocs-material-
- run: pip install -r requirements.txt
- run: mkdocs gh-deploy --force
- run: mkdocs gh-deploy -s --force

build:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: pip install -r requirements.txt
- run: mkdocs build -s
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ And dependencies


## Running Locally
`mkdocs serve`
`mkdocs serve -s`

The docs should then be available locally from http://127.0.0.1:8000/

**Note:** `mkdocs` will automatically clone component repositories as configured via `mkdocs.yml`.

## Building
`mkdocs build`
`mkdocs build -s`

Outputs static content to `site`.

Expand Down
8 changes: 4 additions & 4 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ In the multi-cluster environment[^2], you can utilize Kuadrant to manage DNS-bas

## Component Documentation

* [Kuadrant Operator](/kuadrant-operator)<br/>
* [Kuadrant Operator](kuadrant-operator/README.md)<br/>
Install and manage the lifecycle of the Kuadrant deployments and core Kuadrant policies for the data plane.
* [Authorino](/authorino)<br/>
* [Authorino](authorino/README.md)<br/>
Flexible, cloud-native, and lightweight external authorization server to implement identity verification (Kubernetes TokenReview, OIDC, OAuth2, API key, mTLS) and authorization policy rules (Kuberentes SubjectAccessReview, JWT claims, OPA, request pattern-matching, resource metadata, RBAC, ReBAC, ABAC, etc).
* [Limitador](/limitador)<br/>
* [Limitador](limitador/README.md)<br/>
Fast rate-limiter implemented in Rust, that can be used as a library, or as a service plugged in to the API gateway.
* [Multicluster Gateway Controller](/multicluster-gateway-controller)<br/>
* [Multicluster Gateway Controller](multicluster-gateway-controller/README.md)<br/>
Manage multi-cluster gateways, integrate with DNS providers, TLS providers and OCM (Open Cluster Management).
53 changes: 32 additions & 21 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ theme:
extra_css:
- assets/stylesheets/extra.css
watch:
- overrides
- overrides
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
Expand All @@ -37,36 +37,40 @@ plugins:
keep_docs_dir: true
nav_repos:
- name: kuadrant-operator
import_url: 'https://github.com/kuadrant/kuadrant-operator?edit_uri=/blob/main/&branch=v0.6.0'
import_url: 'https://github.com/kuadrant/kuadrant-operator?edit_uri=/blob/main/&branch=main'
imports:
- /README.md
- /doc/*
- /config/samples/*
- name: authorino
import_url: 'https://github.com/kuadrant/authorino?edit_uri=/blob/main/&branch=v0.16.0'
import_url: 'https://github.com/kuadrant/authorino?edit_uri=/blob/main/&branch=main'
imports:
- /README.md
- /docs/*
- /docs/user-guides/*
- /install/crd/*
- name: authorino-operator
import_url: 'https://github.com/kuadrant/authorino-operator?edit_uri=/blob/main/&branch=v0.10.0'
import_url: 'https://github.com/kuadrant/authorino-operator?edit_uri=/blob/main/&branch=main'
imports:
- /README.md
- name: limitador
import_url: 'https://github.com/kuadrant/limitador?edit_uri=/blob/main/&branch=v1.3.0'
import_url: 'https://github.com/kuadrant/limitador?edit_uri=/blob/main/&branch=main'
imports:
- /README.md
- /doc/*
- /limitador-server/README.md
- /limitador-server/docs/*
- /limitador/README.md
- /limitador-server/kubernetes/*
- /limitador-server/sandbox/*
- /LICENSE
- name: limitador-operator
import_url: 'https://github.com/kuadrant/limitador-operator?edit_uri=/blob/main/&branch=v0.7.0'
import_url: 'https://github.com/kuadrant/limitador-operator?edit_uri=/blob/main/&branch=main'
imports:
- /README.md
- /doc/*
- name: multicluster-gateway-controller
import_url: 'https://github.com/kuadrant/multicluster-gateway-controller?edit_uri=/blob/main/&branch=release-0.3'
import_url: 'https://github.com/kuadrant/multicluster-gateway-controller?edit_uri=/blob/main/&branch=main'
imports:
- /README.md
- /docs/*
Expand All @@ -85,6 +89,12 @@ plugins:
imports:
- /README.md
- /doc/*
- name: dns-operator
import_url: 'https://github.com/kuadrant/dns-operator?edit_uri=/blob/main/&branch=main'
imports:
- /README.md
- /docs/*
- /config/samples/*
nav:
- 'Overview': index.md
- 'Getting Started':
Expand All @@ -97,14 +107,14 @@ nav:
- 'Service Protection installation with Existing OCM': multicluster-gateway-controller/docs/installation/service-protection-installation.md
- 'Concepts and APIs':
- 'DNSPolicy':
- 'Overview': multicluster-gateway-controller/docs/dnspolicy/dnspolicy.md
- 'Reference': multicluster-gateway-controller/docs/reference/dnspolicy.md
- 'Reference': kuadrant-operator/doc/reference/dnspolicy.md
- 'Gateway DNS for Cluster Operators': kuadrant-operator/doc/user-guides/gateway-dns.md
- 'ManagedZone':
- 'Overview': multicluster-gateway-controller/docs/managed-zone.md
- 'Reference': multicluster-gateway-controller/docs/reference/managedzone.md
- 'Overview': dns-operator/docs/managedzone.md
- 'Reference': dns-operator/docs/reference/managedzone.md
- 'TLSPolicy':
- 'Overview': multicluster-gateway-controller/docs/tlspolicy/tls-policy.md
- 'Reference': multicluster-gateway-controller/docs/reference/tlspolicy.md
- 'Overview': kuadrant-operator/doc/tls.md
- 'Reference': kuadrant-operator/doc/reference/tlspolicy.md
- 'AuthPolicy':
- 'Overview': kuadrant-operator/doc/auth.md
- 'Reference': kuadrant-operator/doc/reference/authpolicy.md
Expand All @@ -119,12 +129,11 @@ nav:
- 'Single Cluster':
- 'Secure, connect and protect': kuadrant-operator/doc/user-guides/secure-protect-connect.md
- 'DNS configuration and load balancing':
- 'Basic DNSPolicy': multicluster-gateway-controller/docs/dnspolicy/dnspolicy-quickstart.md
- 'DNS Health Checks': multicluster-gateway-controller/docs/dnspolicy/dns-health-checks.md
- 'DNS Providers': multicluster-gateway-controller/docs/dnspolicy/dns-provider.md
- 'DNS Health Checks': kuadrant-operator/doc/dnshealthchecks.md
# - 'DNS Providers': multicluster-gateway-controller/docs/dnspolicy/dns-provider.md # TODO: this seems to have been lost recently
- 'Advanced DNS based LoadBalancing': multicluster-gateway-controller/docs/how-to/multicluster-loadbalanced-dnspolicy.md
- 'TLS configuration':
- 'TLSPolicy and Cert-Manager': multicluster-gateway-controller/docs/tlspolicy/tls-policy.md # new doc needed but this one is ok for now
- 'Gateway TLS for Cluster Operators': kuadrant-operator/doc/user-guides/gateway-tls.md
- 'Authentication & Authorization':
- 'AuthPolicy for Application Developers and Platform Engineers': kuadrant-operator/doc/user-guides/auth-for-app-devs-and-platform-engineers.md
- 'Authentication with Kubernetes tokens (TokenReview API)': authorino/docs/user-guides/kubernetes-tokenreview.md
Expand Down Expand Up @@ -161,8 +170,6 @@ nav:
- 'Multi-Cluster Metrics': multicluster-gateway-controller/docs/how-to/metrics-walkthrough.md
- 'Authentication and Authorization': authorino/docs/user-guides/observability.md
- 'Experimental':
- 'Kuadrant and Skupper Gateway Resiliency': multicluster-gateway-controller/docs/experimental/skupper-poc-2-gateways-resiliency-walkthrough.md
- 'Kuadrant and Submariner Gateway Resiliency': multicluster-gateway-controller/docs/experimental/submariner-poc-2-gateways-resiliency-walkthrough.md
- 'API Quickstart': 'api-quickstart/README.md'
- 'Proposals':
- 'Request For Comments (RFC)':
Expand All @@ -174,7 +181,11 @@ nav:
- 'RFC 0006: Configuration of Kuadrant Sub Components': architecture/rfcs/0006-kuadrant_sub_components_configurations.md
- 'RFC 0007: Policy Sync': architecture/rfcs/0007-policy-sync-v1.md
- 'Multicluster Gateway Controller':
- 'Multiple DNS Provider Support': multicluster-gateway-controller/docs/proposals/multiple-dns-provider-support.md
- 'Multiple DNS Provider Support':
- 'Overview': multicluster-gateway-controller/docs/proposals/multiple-dns-provider-support.md
- 'Google DNS': multicluster-gateway-controller/docs/proposals/assets/multiple-dns-provider-support/google/google.md
- 'AWS DNS': multicluster-gateway-controller/docs/proposals/assets/multiple-dns-provider-support/aws/aws.md
- 'Azure DNS': multicluster-gateway-controller/docs/proposals/assets/multiple-dns-provider-support/azure/azure.md
- 'Aggregation of Status Conditions': multicluster-gateway-controller/docs/proposals/status-aggregation.md
- 'Components':
- 'Kuadrant Operator':
Expand All @@ -199,7 +210,7 @@ nav:
- 'Server':
- 'Overview': limitador/limitador-server/README.md
- 'Kubernetes': limitador/limitador-server/kubernetes/README.md
- 'Sandbox': limitador/limitador-server/docs/sandbox.md
- 'Sandbox': limitador/limitador-server/sandbox/README.md
- 'Crate': limitador/limitador/README.md
- 'Limitador Operator':
- 'Overview': limitador-operator/README.md
Expand Down

0 comments on commit 4f7cbea

Please sign in to comment.