Skip to content

Commit 86d0a3e

Browse files
committed
v0.13.2
Adds a test render path alias that allows for test rendering with mock values when desired.
1 parent 08f0614 commit 86d0a3e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Kuber
1010

1111
kuber is Python library for the management of Kubernetes resources. It's
12-
ideal for for collectively managing groups of resources throughout their
12+
ideal for collectively managing groups of resources throughout their
1313
lifecycle. Resource definitions can be created and managed entirely in Python
1414
code (the pure-Python approach), but kuber is most effective when used in a
1515
hybrid fashion that combines configuration files and Python code.

kuber/interface/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ def invoke(
6363
"create": do_create,
6464
"delete": do_delete,
6565
"render": do_render,
66+
"test": do_render,
6667
"status": do_status,
6768
}
6869
command = args.command or "render"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "kuber"
3-
version = "1.13.1"
3+
version = "1.13.2"
44
description = "Accelerated Kubernetes configuration and package management with Python."
55
authors = ["Scott Ernst <swernst@gmail.com>"]
66
license = "MIT"

0 commit comments

Comments
 (0)