Joe Bowbeer
Joe Bowbeer
@salaboy I agree with you that `dapr init -k --dev` is not a great path, and that my earlier idea of an umbrella chart probably isn't either. It's better to...
@paulyuk I am not sure I understand what you're saying: > I believe the sweet spot therefore is we keep the dapr init -k --dev as a fast way to...
To be thorough, `cilium install` is also their recommended way to install, possibly because it runs validation after the install. `vcluster create` is advertised as the quickest and easiest way...
The helm chart is highlighted in the docs now: https://docs.dapr.io/operations/hosting/kubernetes/kubernetes-production/#deploy-dapr-with-helm Close this issue or is there more to do? By the way, I created a PR to fix a bad...
Node's promisify is a very simple wrapper and could easily be inlined, something like: ```javascript const promisify = fn => (...args) => new Promise((resolve, reject) => { fn(...args, (error, value)...
See [reqwest-retry](https://crates.io/crates/reqwest-retry) in https://github.com/TrueLayer/reqwest-middleware
@chipzoller is this related to #4481 ? Can the dichotomy explained in your comment there apply here as well? https://github.com/kyverno/kyverno/issues/4481#issuecomment-1242717905
@eddycharly how can assertion trees help with negative testing? Can you point me to an example in docs, or add one here? I located a [blog post](https://main.kyverno.io/blog/2023/12/13/kyverno-chainsaw-exploring-the-power-of-assertion-trees/) on assertion trees,...
This link works: https://docs.deno.com/deploy/tutorials/simple-api/ I agree, I think this would be sweet. I'm imagining a builder that looks very similar to the nodejs builder, with, e.g., `deno install` instead of...
Node 23 can run TypeScript files without any extra configuration. https://www.totaltypescript.com/typescript-is-coming-to-node-23