Skip to content

Commit

Permalink
Install v1.7.0-alpha.0
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Wall <richard.wall@jetstack.io>
  • Loading branch information
wallrj committed Dec 21, 2021
1 parent 286d297 commit 7487ac7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion content/en/docs/installation/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ install methods are listed below for each of the situations.
The default static configuration can be installed as follows:
```bash
$ kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.6.1/cert-manager.yaml
$ kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.7.0-alpha.0/cert-manager.yaml
```
More information on this install method [can be found here](./kubectl/).

Expand Down
8 changes: 4 additions & 4 deletions content/en/docs/installation/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ or using the `installCRDs` option when installing the Helm chart.


```bash
$ kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.6.1/cert-manager.crds.yaml
$ kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.7.0-alpha.0/cert-manager.crds.yaml
```

##### Option 2: install CRDs as part of the Helm release
Expand All @@ -67,7 +67,7 @@ $ helm install \
cert-manager jetstack/cert-manager \
--namespace cert-manager \
--create-namespace \
--version v1.6.1 \
--version v1.7.0-alpha.0 \
# --set installCRDs=true
```

Expand All @@ -80,7 +80,7 @@ $ helm install \
cert-manager jetstack/cert-manager \
--namespace cert-manager \
--create-namespace \
--version v1.6.1 \
--version v1.7.0-alpha.0 \
--set prometheus.enabled=false \ # Example: disabling prometheus using a Helm parameter
--set webhook.timeoutSeconds=4 # Example: changing the wehbook timeout using a Helm parameter
```
Expand All @@ -97,7 +97,7 @@ $ helm template \
cert-manager jetstack/cert-manager \
--namespace cert-manager \
--create-namespace \
--version v1.6.1 \
--version v1.7.0-alpha.0 \
# --set prometheus.enabled=false \ # Example: disabling prometheus using a Helm parameter
# --set installCRDs=true \ # Uncomment to also template CRDs
> cert-manager.custom.yaml
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/installation/kubectl.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ are included in a single YAML manifest file:
Install all cert-manager components:

```bash
$ kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.6.1/cert-manager.yaml
$ kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.7.0-alpha.0/cert-manager.yaml
```

By default, cert-manager will be installed into the `cert-manager`
Expand Down

0 comments on commit 7487ac7

Please sign in to comment.