Skip to content
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 IngressClasses example #340

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions vcluster/_partials/quick-start-guide/explore-features.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<Step>

Modify `vcluster.yaml` so that vCluster creates the required Ingress resource.

Check warning on line 17 in vcluster/_partials/quick-start-guide/explore-features.mdx

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [Loft.code-blocks-language] Code blocks must include language and title attribute: ```bash title="Description here" Raw Output: {"message": "[Loft.code-blocks-language] Code blocks must include language and title attribute: ```bash title=\"Description here\"", "location": {"path": "vcluster/_partials/quick-start-guide/explore-features.mdx", "range": {"start": {"line": 17, "column": 1}}}, "severity": "WARNING"}
```yaml
controlPlane:
ingress:
Expand Down Expand Up @@ -48,7 +48,7 @@
<Step>

Modify `vcluster.yaml` to sync the nodes from the host cluster to the virtual cluster.

Check warning on line 51 in vcluster/_partials/quick-start-guide/explore-features.mdx

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [Loft.code-blocks-language] Code blocks must include language and title attribute: ```bash title="Description here" Raw Output: {"message": "[Loft.code-blocks-language] Code blocks must include language and title attribute: ```bash title=\"Description here\"", "location": {"path": "vcluster/_partials/quick-start-guide/explore-features.mdx", "range": {"start": {"line": 51, "column": 1}}}, "severity": "WARNING"}
```yaml
sync:
fromHost:
Expand All @@ -68,15 +68,15 @@
</details>

<details>
<summary>Sync ingress from host cluster to virtual cluster</summary>
<summary>Sync ingress classes from host cluster to virtual cluster</summary>

If you want to use an ingress controller from the host cluster inside your virtual cluster, enable `IngressClass` syncing from the host cluster to virtual cluster.
If you want to use an ingress controller from the host cluster inside your virtual cluster by syncing `Ingress` resources from the virtual cluster to host cluster, and allow the host cluster IngressClasses to be viewable, enable `IngressClass` syncing from the host cluster to virtual cluster.

<Flow>
<Step>

Modify `vcluster.yaml` to sync the IngressClasses from the host cluster to the virtual cluster.

Check warning on line 79 in vcluster/_partials/quick-start-guide/explore-features.mdx

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [Loft.code-blocks-language] Code blocks must include language and title attribute: ```bash title="Description here" Raw Output: {"message": "[Loft.code-blocks-language] Code blocks must include language and title attribute: ```bash title=\"Description here\"", "location": {"path": "vcluster/_partials/quick-start-guide/explore-features.mdx", "range": {"start": {"line": 79, "column": 1}}}, "severity": "WARNING"}
```yaml
sync:
fromHost:
Expand Down Expand Up @@ -149,4 +149,4 @@
</Step>
</Flow>

</details>
</details>
Loading