- 12 May, 2018 2 commits
-
-
bryanl authored
Signed-off-by:
bryanl <bryanliles@gmail.com>
-
Bryan Liles authored
When applying objects to cluster, annotate them with `ksonnet.io/managed`. This annotation is an array which includes a JSONPath to all to updated fields. If a field as an array and contains an object with a name field, create a selector which defined a route to that field. Signed-off-by:
bryanl <bryanliles@gmail.com>
-
- 11 May, 2018 6 commits
-
-
Bryan Liles authored
Signed-off-by:
bryanl <bryanliles@gmail.com>
-
Bryan Liles authored
If param set float fails, use string
-
Bryan Liles authored
Add component paths to jpath
-
bryanl authored
Fixes #509 Signed-off-by:
bryanl <bryanliles@gmail.com>
-
Bryan Liles authored
Support full jsonnet language
-
bryanl authored
With this change, the entire 0.10.0 jsonnet language is supported Signed-off-by:
bryanl <bryanliles@gmail.com>
-
- 08 May, 2018 6 commits
-
-
Bryan Liles authored
Add multiple levels of logging verbosity
-
bryanl authored
Adds multiple levels of logging verbosity. Squelches jsonnet vm output unless `-vv` is passed to `ks`. Signed-off-by:
bryanl <bryanliles@gmail.com>
-
Bryan Liles authored
Make native funcs available for components
-
bryanl authored
re-enables native funcs for components: * parseYaml * parseJson * regexMatch * regexSubst * escapeStringRegex Fixes #508 Signed-off-by:
bryanl <bryanliles@gmail.com>
-
Bryan Liles authored
Use client-go to retrieve cluster version
-
bryanl authored
Use functionality in client-go to retrieve version from Open API schema instead of trying to construct the call manually. Fixes #503 Signed-off-by:
bryanl <bryanliles@gmail.com>
-
- 07 May, 2018 7 commits
-
-
Bryan Liles authored
List components in alphabetical order
-
bryanl authored
Signed-off-by:
bryanl <bryanliles@gmail.com>
-
bryanl authored
Signed-off-by:
bryanl <bryanliles@gmail.com>
-
Bryan Liles authored
Omit library gitVersion if null
-
Bryan Liles authored
Disable environment ksonnet-lib import by default
-
bryanl authored
Fixes #511 Signed-off-by:
bryanl <bryanliles@gmail.com>
-
bryanl authored
import is not needed if it isn't being used Fixes #514 Signed-off-by:
bryanl <bryanliles@gmail.com>
-
- 02 May, 2018 1 commit
-
-
bryanl authored
Signed-off-by:
bryanl <bryanliles@gmail.com>
-
- 27 Apr, 2018 10 commits
-
-
Bryan Liles authored
updating changelog for 0.10.1
-
bryanl authored
Signed-off-by:
bryanl <bryanliles@gmail.com>
-
Bryan Liles authored
updating ksonnet-lib to v0.1.3
-
bryanl authored
Signed-off-by:
bryanl <bryanliles@gmail.com>
-
Bryan Liles authored
Allow forcing a parameter value to string
-
bryanl authored
Adds ability to force a paramter value to string using the `--as-string` flag. e.g. ``` [I] mule · value-string-type-hint± ⟩ ks param set comp aDigit 1 [I] mule · value-string-type-hint± ⟩ ks param list comp COMPONENT PARAM VALUE ========= ===== ===== comp aDigit 1 comp bindings [{"name":"name","role":"role","users":["user1","user2"]}] [I] mule · value-string-type-hint± ⟩ ks param set comp aDigit 1 --as-string [I] mule · value-string-type-hint± ⟩ ks param list comp COMPONENT PARAM VALUE ========= ===== ===== comp aDigit "1" comp bindings [{"name":"name","role":"role","users":["user1","user2"]}] ``` Fixes #496 Fixes #492 Signed-off-by:
bryanl <bryanliles@gmail.com>
-
Bryan Liles authored
decode string with leading 0 as string
-
bryanl authored
When setting parameters, if the value starts with a leading 0 and is not a float, consider it to be a string. e.g.: 00: string 0.1: float 0: int Signed-off-by:
bryanl <bryanliles@gmail.com>
-
Bryan Liles authored
Add environment path to jpath for relative imports
-
bryanl authored
enviroment `main.jsonnet` files updated the path of the import of `base.libsonnet` to remove the relative bits because you can't assume that the environment root is directly off the root. This breaks older applications. The fix is to add the environment path to the jpath. Fixes #493 Signed-off-by:
bryanl <bryanliles@gmail.com>
-
- 26 Apr, 2018 8 commits
-
-
Bryan Liles authored
Printer fixes
-
bryanl authored
Signed-off-by:
bryanl <bryanliles@gmail.com>
-
bryanl authored
Signed-off-by:
bryanl <bryanliles@gmail.com>
-
Bryan Liles authored
update ksonnet lib printer with array comprehensions
-
bryanl authored
Signed-off-by:
bryanl <bryanliles@gmail.com>
-
Bryan Liles authored
prepare changelog for v0.10.0
-
bryanl authored
Signed-off-by:
bryanl <bryanliles@gmail.com>
-
Bryan Liles authored
Adding initial override documentation
-