Skip to content
This repository has been archived by the owner on Oct 3, 2020. It is now read-only.

Commit

Permalink
v20.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hjacobs committed Apr 19, 2020
1 parent bf7b895 commit 18ff099
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,15 @@ 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.2 /output
$ docker run --rm -it --user=$(id -u) --net=host -v $(pwd)/output:/output hjacobs/kube-resource-report:20.4.3 /output
**For macOS**:

.. code-block::
$ 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.2 /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
--------------------
Application Registry
Expand Down Expand Up @@ -198,7 +198,7 @@ For available icon names, see the `Font Awesome gallery with free icons <https:/
Settings
--------

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

Besides this, you can also pass environment variables:

Expand Down
2 changes: 1 addition & 1 deletion chart/kube-resource-report/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: "20.4.2"
appVersion: "20.4.3"
description: Report Kubernetes cluster and pod resource requests vs usage and generate static HTML
name: kube-resource-report
version: 0.5.0
Expand Down
2 changes: 1 addition & 1 deletion chart/kube-resource-report/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replicaCount: 1

image:
repository: hjacobs/kube-resource-report
tag: "20.4.2"
tag: "20.4.3"
pullPolicy: IfNotPresent

rbac:
Expand Down
6 changes: 3 additions & 3 deletions deploy/deployment-with-cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: Deployment
metadata:
labels:
application: kube-resource-report
version: v20.4.2
version: v20.4.3
name: kube-resource-report
spec:
replicas: 1
Expand All @@ -14,13 +14,13 @@ spec:
metadata:
labels:
application: kube-resource-report
version: v20.4.2
version: v20.4.3
spec:
serviceAccount: kube-resource-report
containers:
- name: kube-resource-report
# see https://github.com/hjacobs/kube-resource-report/releases
image: hjacobs/kube-resource-report:20.4.2
image: hjacobs/kube-resource-report:20.4.3
args:
- --update-interval-minutes=1
- "--pricing-file=/pricing-file/pricing.csv"
Expand Down
6 changes: 3 additions & 3 deletions deploy/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: Deployment
metadata:
labels:
application: kube-resource-report
version: v20.4.2
version: v20.4.3
name: kube-resource-report
spec:
replicas: 1
Expand All @@ -14,13 +14,13 @@ spec:
metadata:
labels:
application: kube-resource-report
version: v20.4.2
version: v20.4.3
spec:
serviceAccount: kube-resource-report
containers:
- name: kube-resource-report
# see https://github.com/hjacobs/kube-resource-report/releases
image: hjacobs/kube-resource-report:20.4.2
image: hjacobs/kube-resource-report:20.4.3
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 = "20.4.2"
version = "20.4.3"
description = "Report Kubernetes cluster and pod resource requests vs usage and generate static HTML"
authors = ["Henning Jacobs <henning@jacobs1.de>"]

Expand Down

0 comments on commit 18ff099

Please sign in to comment.