Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
eht16 committed May 24, 2020
1 parent 9288f95 commit 16b5cfe
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ Features
* Overview of PODs and their memory or cpu requests, limits and actual usage
* Provides an easy inspection of the cluster utilization in terms of memory or cpu
* Uses `kubectl` under the hood and reuses its config
* Supports --namespace and --all-namespaces command line arguments
* Supports --context command line argument
* Supports `--namespace` and `--all-namespaces` command line arguments
* Supports `--context` command line argument
filters and column setup

Example:
Expand Down Expand Up @@ -105,6 +105,12 @@ The source code is available at https://github.com/eht16/kube-cargo-load/.
ChangeLog
---------

### 1.2 / 2020-05-24

* Add support for -c/--cpu flag (#3, Kurounin)
* Round humanized usage values to have more accurate numbers
* Add unit tests

### 1.1 / 2020-04-15

* Fix Python 3.6 compability (#1, Adrian Gajan)
Expand Down
2 changes: 1 addition & 1 deletion kubecargoload.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import sys


VERSION = '1.1'
VERSION = '1.2'
KUBECTL_BIN = 'kubectl'

Pod = namedtuple('Pod', ('namespace', 'name', 'memory_limits', 'memory_requests', 'memory_usage'))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import sys

NAME = 'kube-cargo-load'
VERSION = '1.1'
VERSION = '1.2'

here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), 'rb') as f:
Expand Down

0 comments on commit 16b5cfe

Please sign in to comment.