File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 9
9
# Kuber
10
10
11
11
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
13
13
lifecycle. Resource definitions can be created and managed entirely in Python
14
14
code (the pure-Python approach), but kuber is most effective when used in a
15
15
hybrid fashion that combines configuration files and Python code.
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ def invoke(
63
63
"create" : do_create ,
64
64
"delete" : do_delete ,
65
65
"render" : do_render ,
66
+ "test" : do_render ,
66
67
"status" : do_status ,
67
68
}
68
69
command = args .command or "render"
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " kuber"
3
- version = " 1.13.1 "
3
+ version = " 1.13.2 "
4
4
description = " Accelerated Kubernetes configuration and package management with Python."
5
5
authors = [" Scott Ernst <swernst@gmail.com>" ]
6
6
license = " MIT"
You can’t perform that action at this time.
0 commit comments