Damien
Damien
The cache directory is a bit complicated but not impossible :) On Linux you have a freedesktop standard: https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html. By default the cache should be somewhere in `~/.cache/jk` and `XDG_CACHE_HOME`...
Unfortunately, the path implementation to address fields doesn't support arrays right now. You would like to type `-p ingress.publicHosts[0].paths[2].port 8080` but can't. Good catch, added as feature request!
Made std.js readable, so exceptions in the standard library are now readable! that alleviates the immediate need for sourcemaps. See PR #84.
We do not provide specific support for CSV files at the moment, unfortunately. It's always possible to read a file as a string though, iterate over the lines and parse...
We have an index.js script with: ```js import * as foo './foo/index.js'; ``` The fs looks like: ``` /index.js /foo/ -> ../../outside/ ``` and run `jk run ./index.js`
That's definitely a possible argument to make :) We could decide either: a. If there's a symlink there, it's for a good reason and we don't want to get in...
At some point we have to draw a line :) "hermeticity" isn't supposed to be a security feature or completely locked down. Currently we define it as: "if a git...
Terraform 0.12 is reaffirming its commitment to the JSON output: https://www.hashicorp.com/blog/terraform-0-12-reliable-json-syntax https://www.terraform.io/docs/internals/json-format.html There are quite a few details needed to keep a 1:1 (terraform) HCL JSON representation, hopefully we'll get...
You indeed found something that we're currently lacking in the std lib. Support array parameters directly. That's because I couldn't find a nice way to express typing `Array`, `Array`, etc....
I'm not too sure what `internalHosts` represents here. It is the DNS name to access the service from inside the cluster (so `foo.ns.svc.cluster.local`) and repeat the same paths than for...