Nick Lanham
Nick Lanham
Well, it certainly allowed it at some point since this secret exists in one of our clusters :). The best I could find for a schema quickly was https://github.com/instrumenta/kubernetes-json-schema/blob/master/v1.12.5/secret.json, which...
Got it. I'll test if I can create secrets and configmaps with null and report back
Creating a secret with null. ``` $ cat /tmp/null_secret.json { "apiVersion": "v1", "data": { "nullkey": null, "key": "dXNlcg==" }, "kind": "Secret", "metadata": { "name": "test-null", "namespace": "default" }, "type": "Opaque"...
Looks like it'll create it, but actually turn that into the empty string: ``` $cat /tmp/null_configmap.json { "apiVersion": "v1", "kind": "ConfigMap", "metadata": { "name": "nullconfigmap", "namespace": "default" }, "data": {...
Okay cool. I'm happy to write such a PR. I do wonder though, why only deal with UTF-8 errors? Does not being able to read the model for some other...
I'm not really working on this plugin much anymore due to lack of time. PR's are welcome (i'll be better about review+merge)
Awesome, thanks for all of these! I'll have a look shortly and merge them.
yeah, the interface certainly needs some revision. i'll look at getting some of the minor updates you've suggested in soon, as i agree they would be useful. when i finally...
Hey Håkan, This is great thanks! I've been thinking of adding something similar but hadn't got around to it. It feels like something lv2 should support more natively too (since...
Yeah, this is on my todo list. Without some experimental lv2 features, there's no good way for the core of the plugin (the part that gets midi events) to tell...