Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 8 additions & 2 deletions config/_default/params.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# Set to "docs" path

[[versions]]
version = "v1.3"
version = "v1.4"
# 'master' is used to store the 'current' version documentation.
# Once the 'next' release becomes 'current', we branch master to
# release-X.Y and merge 'release-next' into 'master'.
Expand All @@ -33,7 +33,7 @@
# 'Next' version
################
[[versions]]
version = "v1.4"
version = "v1.5"
ghbranchname = "release-next"
url = "/next-docs/"
dirpath = "next-docs"
Expand All @@ -42,6 +42,12 @@
###################
# Use format `v0.#-docs` for past version's dirpath

[[versions]]
version = "v1.3"
ghbranchname = "release-1.3"
url = "/v1.3-docs/"
dirpath = "v1.3-docs"

[[versions]]
version = "v1.2"
ghbranchname = "release-1.2"
Expand Down
6 changes: 3 additions & 3 deletions content/en/docs/installation/kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ are included in a single YAML manifest file:
Install the `CustomResourceDefinitions` and cert-manager itself:

```bash
$ kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.3.1/cert-manager.yaml
$ kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.4.0/cert-manager.yaml
```

> **Note**: When running on GKE (Google Kubernetes Engine), you may encounter a
Expand Down Expand Up @@ -114,7 +114,7 @@ option when installing the Helm chart.
Install the `CustomResourceDefinition` resources using `kubectl`:

```bash
$ kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.3.1/cert-manager.crds.yaml
$ kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.4.0/cert-manager.crds.yaml
```

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

Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/installation/openshift.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ are included in a single YAML manifest file:

Install the `CustomResourceDefinitions` and cert-manager itself
```bash
oc apply -f https://github.com/jetstack/cert-manager/releases/download/v1.3.1/cert-manager.yaml
oc apply -f https://github.com/jetstack/cert-manager/releases/download/v1.4.0/cert-manager.yaml
```

## Installing with cert-manager operator
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/usage/kubectl-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ You need the `kubectl-cert-manager.tar.gz` file for the platform you're using, t
In order to use the kubectl plugin you need its binary to be accessible under the name `kubectl-cert_manager` in your `$PATH`.
Run the following commands to set up the plugin:
```console
$ curl -L -o kubectl-cert-manager.tar.gz https://github.com/jetstack/cert-manager/releases/download/v1.3.1/kubectl-cert_manager-linux-amd64.tar.gz
$ curl -L -o kubectl-cert-manager.tar.gz https://github.com/jetstack/cert-manager/releases/download/v1.4.0/kubectl-cert_manager-linux-amd64.tar.gz
$ tar xzf kubectl-cert-manager.tar.gz
$ sudo mv kubectl-cert_manager /usr/local/bin
```
Expand Down
5 changes: 3 additions & 2 deletions scripts/gendocs/generate
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,9 @@ genversion() {

# The branches named here exist in the `jetstack/cert-manager` repo.

genversion "release-1.4" "next-docs"
genversion "release-1.3" "docs"
genversion "release-1.5" "next-docs"
genversion "release-1.4" "docs"
genversion "release-1.4" "v1.4-docs"
genversion "release-1.3" "v1.3-docs"
genversion "release-1.2" "v1.2-docs"
genversion "release-1.1" "v1.1-docs"
Expand Down
1 change: 1 addition & 0 deletions scripts/update-content
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ REPO_ROOT="${REPO_ROOT:-$(cd "$(dirname "$0")/.." && pwd)}"
--repo-url https://github.com/cert-manager/website.git \
--repo-content-dir content/en/docs \
--output-dir "${REPO_ROOT}/content/en" \
--branches v1.4-docs=release-1.4 \
--branches v1.3-docs=release-1.3 \
--branches v1.2-docs=release-1.2 \
--branches v1.1-docs=release-1.1 \
Expand Down
1 change: 1 addition & 0 deletions scripts/verify-lint
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ echo "+++ Running spell check"
"!content/en/v1.1-docs/reference/api-docs.md" \
"!content/en/v1.2-docs/reference/api-docs.md" \
"!content/en/v1.3-docs/reference/api-docs.md" \
"!content/en/v1.4-docs/reference/api-docs.md" \
"!content/en/next-docs/**/*.md"

# About "!content/en/next-docs/**/*.md":
Expand Down