Ruben Laguna
Ruben Laguna
that pod "test-32677" has been running 1 hour and it's not showing up in Lens. Also if I try the same thing but installing kube-prometheus (prometheus operator) then metrics appear...
Am I right to assume that this covers making the helm chart deployable in k8s namespace that enforces the PodSecurityStandard "restricted" ? Currently as I wrote in #9212 , the...
After a closer inspection I see that this PR includes examples where the namepace labels are set to `pod-security.kubernetes.io/enforce: baseline` so I'm assuming that `restricted` has been ruled out? I...
Reading more carefully the [Variables documentation](https://github.com/schibsted/jslt/blob/master/tutorial.md#variables) it seems that `let` is allowed in the `if` and at the beginning of objects. I was using ``` let object_props = if (.object)...
> There is an experimental branch with a custom JSLT VM which could be developed further to provide a Jackson-less JSLT. What branch is that? > Functions: these have to...
@larsga pointed that this could be implemented as ``` def keys(obj) [for ($obj) .key] def unique(values) let obj = {for ($values) . : .} keys($obj) def merge(obj1, obj2) if (not($obj1))...
I didn't know there was an [experimental module](https://github.com/schibsted/jslt/blob/master/docs/experimental.md)
``` def keys(obj) [for ($obj) .key] def unique(values) let obj = {for ($values) . : .} keys($obj) def merge(obj1, obj2) if ($obj1 == null) // remember that $obj1 can be...
But `[for (myobj) . if ('.b', '.c.e')]` would return an `array` `[2,4]` not an `object`. I guess it's possible to use the [Object for expressions](https://github.com/schibsted/jslt/blob/master/tutorial.md#object-for-expressions) to achieve filtering on the...
Update on 2022-05-03: ``` create-nuxt-app v4.0.0 ✨ Generating Nuxt.js project in test-nuxt-app ? Project name: test-nuxt-app ? Programming language: JavaScript ? Package manager: Npm ? UI framework: None ? Nuxt.js...