From 914ffa1c6e72f2a3707a39c8d8320f5855628f83 Mon Sep 17 00:00:00 2001 From: Henning Jacobs Date: Thu, 2 Jul 2020 22:14:46 +0200 Subject: [PATCH] v20.7.2 --- 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 d75df70..78a9951 100644 --- a/README.rst +++ b/README.rst @@ -124,7 +124,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.7.1 /output + $ docker run --rm -it --user=$(id -u) --net=host -v $(pwd)/output:/output hjacobs/kube-resource-report:20.7.2 /output **For macOS**: @@ -132,7 +132,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.7.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:20.7.2 /output -------------------- Application Registry @@ -217,7 +217,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.7.1 --help`` to find out information. +You can run ``docker run --rm hjacobs/kube-resource-report:20.7.2 --help`` to find out information. Besides this, you can also pass environment variables: diff --git a/deploy/deployment.yaml b/deploy/deployment.yaml index d40a698..be3340f 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.7.1 + image: hjacobs/kube-resource-report:20.7.2 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 1846e8c..6929933 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kube_resource_report" -version = "20.7.1" +version = "20.7.2" description = "Report Kubernetes cluster and pod resource requests vs usage and generate static HTML" authors = ["Henning Jacobs "]