From 1acc60b63879da46c48ef528d050fd03e498b588 Mon Sep 17 00:00:00 2001 From: Henning Jacobs Date: Wed, 29 Apr 2020 21:57:58 +0200 Subject: [PATCH] v20.4.4 --- README.rst | 6 +++--- deploy/deployment.yaml | 2 +- pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index c4db036..04a905a 100644 --- a/README.rst +++ b/README.rst @@ -122,7 +122,7 @@ Running as Docker container $ 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:20.4.3 /output + $ docker run --rm -it --user=$(id -u) --net=host -v $(pwd)/output:/output hjacobs/kube-resource-report:20.4.4 /output **For macOS**: @@ -130,7 +130,7 @@ Running as Docker container $ 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:20.4.3 /output + $ docker run --rm -it -e CLUSTERS=http://docker.for.mac.localhost:8001 --user=$(id -u) -v $(pwd)/output:/output hjacobs/kube-resource-report:20.4.4 /output -------------------- Application Registry @@ -211,7 +211,7 @@ Reference the functions via ``{module-name}.{function-name}``, e.g. ``--map-pod- Settings -------- -You can run ``docker run --rm hjacobs/kube-resource-report:20.4.3 --help`` to find out information. +You can run ``docker run --rm hjacobs/kube-resource-report:20.4.4 --help`` to find out information. Besides this, you can also pass environment variables: diff --git a/deploy/deployment.yaml b/deploy/deployment.yaml index 3f0a43f..95f1f21 100644 --- a/deploy/deployment.yaml +++ b/deploy/deployment.yaml @@ -18,7 +18,7 @@ spec: containers: - name: kube-resource-report # see https://github.com/hjacobs/kube-resource-report/releases - image: hjacobs/kube-resource-report:20.4.3 + image: hjacobs/kube-resource-report:20.4.4 args: - --update-interval-minutes=1 # this is just an example, e.g. for Minikube: assume 30 USD/month cluster costs diff --git a/pyproject.toml b/pyproject.toml index 4647557..a54ab43 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kube_resource_report" -version = "20.4.3" +version = "20.4.4" description = "Report Kubernetes cluster and pod resource requests vs usage and generate static HTML" authors = ["Henning Jacobs "]