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

Update cert-manager.mdx #417

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Changes from all commits
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
12 changes: 6 additions & 6 deletions vcluster/_fragments/integrations/cert-manager.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -71,18 +71,18 @@ If you don't have cert-manager configured yet, follow these steps:
<Flow id="cert-manager-integration">
<Step>

<Highlight color="green">Virtual Cluster</Highlight> Create the `ClusterIssuer`.
<Highlight color="green">Virtual Cluster</Highlight> Create the `Issuer`.

:::tip
This should create a corresponding Issuer in the host cluster.
:::

Create a file named `issuer.yaml`:

```yaml title="Create ClusterIssuer"
```yaml title="Issuer"
cat <<EOF > issuer.yaml
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
kind: Issuer
metadata:
name: letsencrypt-staging
spec:
Expand All @@ -105,15 +105,15 @@ EOF

Apply to the virtual cluster:

```bash title="Apply ClusterIssuer to virtual cluster"
kubectl --context=$HOST_CTX apply -f issuer.yaml
```bash title="Apply Issuer to virtual cluster"
kubectl --context=$VCLUSTER_CTX apply -f issuer.yaml
```

</Step>

## Create a certificate

With the `ClusterIssuers` configured, create a certificate within the virtual cluster.
With the `Issuer` configured, create a certificate within the virtual cluster.

<Step>

Expand Down
Loading