Skip to content

Commit

Permalink
fix: doc build
Browse files Browse the repository at this point in the history
  • Loading branch information
SteinRobert committed Sep 18, 2023
1 parent a068d49 commit 32bd92d
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 31 deletions.
76 changes: 49 additions & 27 deletions gefyra/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,56 +223,56 @@ const config = {
from: '/installation/',
},
{
to: '/docs/getting-started/',
to: '/docs/local-environments/',
from: '/getting-started/',
},
{
to: '/docs/getting-started/minikube',
to: '/docs/local-environments/minikube',
from: '/getting-started/minikube/',
},
{
to: '/docs/getting-started/k3d',
to: '/docs/local-environments/k3d',
from: '/getting-started/k3d/',
},
{
to: '/docs/getting-started/kind',
to: '/docs/local-environments/kind',
from: '/getting-started/kind/',
},
{
to: '/docs/getting-started/docker_desktop_osx',
to: '/docs/local-environments/docker_desktop_osx',
from: '/getting-started/docker-desktop-kubernetes-osx/',
},
{
to: '/docs/getting-started/gcp',
to: '/docs/shared-environments/remote-k8s/gcp',
from: '/getting-started/google-cloud-platform-gcp/',
},
{
to: '/docs/getting-started/eks',
to: '/docs/shared-environments/remote-k8s/eks',
from: '/getting-started/aws-eks/',
},
{
to: '/docs/getting-started/colima',
to: '/docs/local-environments/colima',
from: '/getting-started/colima-kubernetes/',
},
{
to: '/docs/getting-started/sys11',
to: '/docs/shared-environments/remote-k8s/sys11',
from: '/getting-started/syseleven-metakube-kubernetes/',
},
{
to: '/docs/cli/',
from: '/cli/',
},
{
to: '/docs/tech/',
from: '/details/',
to: '/docs/technical-details',
from: '/docs/tech/',
},
{
to: '/docs/tech/architecture',
from: '/details/architecture/',
to: '/docs/technical-details/architecture',
from: '/docs/tech/architecture/',
},
{
to: '/docs/tech/what/',
from: '/details/what-is-gefyra/',
to: '/docs/technical-details/what',
from: '/docs/tech/what/',
},
{
to: '/docs/run_vs_bridge/',
Expand All @@ -283,38 +283,60 @@ const config = {
from: '/docker-desktop-extension/',
},
{
to: '/docs/usecases/',
to: '/usecases-and-demos/',
from: '/usecases/',
},
{
to: '/docs/usecases/ubuntu-in-namespace',
to: '/usecases-and-demos/',
from: '/docs/usecases/',
},
{
to: '/usecases-and-demos/ubuntu-in-namespace',
from: '/docs/usecases/ubuntu-in-namespace/',
},
{
to: '/usecases-and-demos/ubuntu-in-namespace',
from: '/usecases/ubuntu-in-namespace/',
},

{
to: '/docs/usecases/oauth2-demo',
to: '/usecases-and-demos/oauth2-demo',
from: '/docs/usecases/oauth2-demo/',
},
{
to: '/usecases-and-demos/oauth2-demo',
from: '/usecases/oauth2-demo/',
},

{
to: '/docs/usecases/remote-gke',
to: '/usecases-and-demos/remote-gke',
from: '/docs/usecases/remote-gke/',
},
{
to: '/usecases-and-demos/remote-gke',
from: '/usecases/remote-development-with-gke/',
},
{
to: '/docs/usecases/golang',
to: '/usecases-and-demos/golang',
from: '/docs/usecases/golang/',
},
{
to: '/usecases-and-demos/golang',
from: '/usecases/developing-go-with-gefyra/',
},
{
to: '/docs/enterprise',
to: '/pricing',
from: '/enterprise/',
},
{
to: '/docs/media',
from: '/media/',
to: '/pricing',
from: '/docs/enterprise/',
},
{
to: '/media/',
from: '/docs/media',
},
{
to: '/docs/about',
from: '/about/',
to: '/about/',
from: '/docs/about',
},

],
Expand Down
2 changes: 1 addition & 1 deletion gefyra/versioned_docs/version-1.x/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Building and pushing containers to test them in Kubernetes is repetitive and tim
## The Solution
Gefyra runs local code in any Kubernetes cluster without the build and push cycle. It overlays containers in the cluster making code changes immediately available.

[Try it now](/docs/getting-started/)
[Try it now](/docs/1.x/getting-started/)

## Core Features
### Run a container instance on a developer machine and connect it to Kubernetes-based resources
Expand Down
6 changes: 3 additions & 3 deletions gefyra/versioned_docs/version-2.0.0/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ gefyra install
| Argument | Description |
|:-------------------|:------------------------------------------------------------------------|
| `--component`, `--comp` | Install specific cluster components. Valid options are: `namespace`, `rbac`, `webhook`, `deployment`, `service`. |
| `--preset` | Apply loadbalancer preset. Allows to expose Gefyra's stowaway connection. Valid options are: `aws`. For more information see [presets](/docs/presets). |
| `--preset` | Apply loadbalancer preset. Allows to expose Gefyra's stowaway connection. Valid options are: `aws`, `gke`. |
| `--apply` | Apply changes to cluster immediately. Otherwise just output YAML to console. |
| `--wait` | Wait until `--apply` is finished. Has to be used with `--apply`. |

### clients

Gefyra allows to create client instances which are used to connect to the cluster. A [Gefyra Client](/docs/tech/clients) is a custom resource within Kubernetes.
Gefyra allows to create client instances which are used to connect to the cluster. A [Gefyra Client](/docs/shared-environments/clients) is a custom resource within Kubernetes.
Once a client instance is created in the cluster it can be used to generate a connection file. This file can be used to connect Gefyra's client side
to the cluster (with limited permissions).

Expand All @@ -54,7 +54,7 @@ gefyra clients delete my-client

#### clients create

Creates a new client. What are [clients](/docs/tech/clients)?
Creates a new client. What are [clients](/docs/shared-environments/clients)?

**Example:**
```bash
Expand Down
6 changes: 6 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 32bd92d

Please sign in to comment.