Skip to content

Commit

Permalink
v21.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hjacobs committed Jun 23, 2021
1 parent 9a710b4 commit 11df2dc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,15 +148,15 @@ Running as Docker container
``` {.sourceCode .}
$ kubectl proxy & # start proxy to your cluster (e.g. Minikube)
$ # run kube-resource-report and generate static HTML to ./output
$ docker run --rm -it --user=$(id -u) --net=host -v $(pwd)/output:/output hjacobs/kube-resource-report:21.2.1 /output
$ docker run --rm -it --user=$(id -u) --net=host -v $(pwd)/output:/output hjacobs/kube-resource-report:21.6.0 /output
```

**For macOS**:

``` {.sourceCode .}
$ kubectl proxy --accept-hosts '.*' & # start proxy to your cluster (e.g. Minikube)
$ # run kube-resource-report and generate static HTML to ./output
$ docker run --rm -it -e CLUSTERS=http://docker.for.mac.localhost:8001 --user=$(id -u) -v $(pwd)/output:/output hjacobs/kube-resource-report:21.2.1 /output
$ docker run --rm -it -e CLUSTERS=http://docker.for.mac.localhost:8001 --user=$(id -u) -v $(pwd)/output:/output hjacobs/kube-resource-report:21.6.0 /output
```

Application Registry
Expand Down Expand Up @@ -270,7 +270,7 @@ Settings
--------

You can run
`docker run --rm hjacobs/kube-resource-report:21.2.1 --help` to find
`docker run --rm hjacobs/kube-resource-report:21.6.0 --help` to find
out information.

Besides this, you can also pass environment variables:
Expand Down
2 changes: 1 addition & 1 deletion deploy/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
containers:
- name: kube-resource-report
# see https://github.com/hjacobs/kube-resource-report/releases
image: hjacobs/kube-resource-report:21.2.1
image: hjacobs/kube-resource-report:21.6.0
args:
- --update-interval-minutes=1
# this is just an example, e.g. for Minikube: assume 30 USD/month cluster costs
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "kube-resource-report"
version = "21.2.1"
version = "21.6.0"
description = "Report Kubernetes cluster and pod resource requests vs usage and generate static HTML"
authors = ["Henning Jacobs <[email protected]>"]
license = "GPL-3.0+"
Expand Down

0 comments on commit 11df2dc

Please sign in to comment.