Skip to content

Commit

Permalink
Merge pull request #52 from spinkube/fix/chart-manager
Browse files Browse the repository at this point in the history
Install cert-manager via Helm chart and use proper naming for cert-manager
  • Loading branch information
tpmccallum committed Mar 6, 2024
2 parents ce3e837 + 67ceddd commit d08d166
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions content/en/docs/spin-operator/installation/installing-with-helm.md
Expand Up @@ -54,10 +54,22 @@ kubectl apply -f config/samples/spin-runtime-class.yaml

## Chart prerequisites

- [Cert Manager](https://github.com/cert-manager/cert-manager) to automatically provision and manage TLS certificates (used by spin-operator's admission webhook system). For detailed installation instructions see [the cert-manager documentation](https://cert-manager.io/docs/installation/).
- [cert-manager](https://github.com/cert-manager/cert-manager) to automatically provision and manage TLS certificates (used by spin-operator's admission webhook system). For detailed installation instructions see [the cert-manager documentation](https://cert-manager.io/docs/installation/).

```console
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.3/cert-manager.yaml
```shell
# Install cert-manager CRDs
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.3/cert-manager.crds.yaml

# Add and update Jetstack repository
helm repo add jetstack https://charts.jetstack.io
helm repo update

# Install the cert-manager Helm chart
helm install \
cert-manager jetstack/cert-manager \
--namespace cert-manager \
--create-namespace \
--version v1.14.3
```

## Chart dependencies
Expand Down

0 comments on commit d08d166

Please sign in to comment.