Skip to content

Commit

Permalink
Merge pull request #540 from googs1025/hugo_param
Browse files Browse the repository at this point in the history
use hugo param to define variables in md language
  • Loading branch information
k8s-ci-robot authored Apr 23, 2024
2 parents 7e8de10 + 10eeb3b commit 6a74ec2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion site/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ ignoreFiles = []
# The major.minor version tag for the version of the docs represented in this
# branch of the repository. Used in the "version-banner" partial to display a
# version number for this doc set.
version = "v0.5.3"
version = "v0.5.0"

# Flag used in the "version-banner" partial to decide whether to display a
# banner on every page indicating that this is an archived version of the docs.
Expand Down
6 changes: 3 additions & 3 deletions site/content/en/docs/installation/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ machine type for your nodes.**
To install a released version of Jobset in your cluster, run the following command:

```shell
VERSION=v0.5.0
VERSION={{< param "version" >}}
kubectl apply --server-side -f https://github.com/kubernetes-sigs/jobset/releases/download/$VERSION/manifests.yaml
```

Expand All @@ -58,7 +58,7 @@ If you are using [prometheus-operator](https://github.com/prometheus-operator/pr
to scrape metrics from jobset components, run the following command:

```shell
VERSION=v0.5.0
VERSION={{< param "version" >}}
kubectl apply -f https://github.com/kubernetes-sigs/jobset/releases/download/$VERSION/prometheus.yaml
```

Expand All @@ -71,7 +71,7 @@ can be scraped without performing this step.
To uninstall a released version of JobSet from your cluster, run the following command:

```shell
VERSION=v0.5.0
VERSION={{< param "version" >}}
kubectl delete -f https://github.com/kubernetes-sigs/jobset/releases/download/$VERSION/manifests.yaml
```

Expand Down

0 comments on commit 6a74ec2

Please sign in to comment.