From 16b5cfe413c3b5d8fbf6d8d5616afd946ee558fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrico=20Tr=C3=B6ger?= Date: Sun, 24 May 2020 17:04:41 +0200 Subject: [PATCH] Version bump --- README.md | 10 ++++++++-- kubecargoload.py | 2 +- setup.py | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 323e166..f68c128 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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) diff --git a/kubecargoload.py b/kubecargoload.py index 649c07d..8e6a3b1 100755 --- a/kubecargoload.py +++ b/kubecargoload.py @@ -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')) diff --git a/setup.py b/setup.py index fd88a3b..56efe2e 100644 --- a/setup.py +++ b/setup.py @@ -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: