Skip to content

Commit

Permalink
Merge pull request #372 from kubewarden/cert-manager-helm
Browse files Browse the repository at this point in the history
Install cert-manager via Helm in quickstart
  • Loading branch information
flavio authored Mar 11, 2024
2 parents 4c77549 + be5496c commit 678378e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
11 changes: 5 additions & 6 deletions docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,15 @@ The Kubernetes Custom Resource Definitions (CRD) defined by Kubewarden are descr
## Installation

:::info Prerequisites
The Helm chart depends on `cert-manager`. Ensure you install [`cert-manager`](https://cert-manager.io/docs/installation/) *before* the `kubewarden-controller` chart.
The Helm chart depends on `cert-manager`. Ensure you install [`cert-manager`](https://cert-manager.io/docs/installation/) _before_ the `kubewarden-controller` chart.

You install the latest version of `cert-manager` by running the following commands:
You can install the latest version of `cert-manager` through Helm by running the following commands:

```console
kubectl apply -f https://github.com/jetstack/cert-manager/releases/latest/download/cert-manager.yaml
```
helm repo add jetstack https://charts.jetstack.io

```console
kubectl wait --for=condition=Available deployment --timeout=2m -n cert-manager --all
helm install --wait --namespace cert-manager --create-namespace \
--set installCRDs=true cert-manager jetstack/cert-manager
```

:::
Expand Down
11 changes: 5 additions & 6 deletions versioned_docs/version-1.10/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,15 @@ The Kubernetes Custom Resource Definitions (CRD) defined by Kubewarden are descr
## Installation

:::info Prerequisites
The Helm chart depends on `cert-manager`. Ensure you install [`cert-manager`](https://cert-manager.io/docs/installation/) *before* the `kubewarden-controller` chart.
The Helm chart depends on `cert-manager`. Ensure you install [`cert-manager`](https://cert-manager.io/docs/installation/) _before_ the `kubewarden-controller` chart.

You install the latest version of `cert-manager` by running the following commands:
You can install the latest version of `cert-manager` through Helm by running the following commands:

```console
kubectl apply -f https://github.com/jetstack/cert-manager/releases/latest/download/cert-manager.yaml
```
helm repo add jetstack https://charts.jetstack.io

```console
kubectl wait --for=condition=Available deployment --timeout=2m -n cert-manager --all
helm install --wait --namespace cert-manager --create-namespace \
--set installCRDs=true cert-manager jetstack/cert-manager
```

:::
Expand Down

0 comments on commit 678378e

Please sign in to comment.