You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
github.com/kubernetes/helm/pkg/strvals is a very nice config format that allows complex hierarchical configurations to be encoded in a single comma-separated value. Pretty much meant to be a flattened YAML, from what I understand...
We used it in several places in k6, but dropped it for simpler hand-roller parses in the few places where it was used, so we could drop the relatively big dependency (grafana/k6#926). Still, if we can implement it in a sane manner, it will be quite useful. Especially if we can actually combine it with the environment variable and CLI flags source, it would allow for some quite flexible configurations!
The text was updated successfully, but these errors were encountered:
github.com/kubernetes/helm/pkg/strvals is a very nice config format that allows complex hierarchical configurations to be encoded in a single comma-separated value. Pretty much meant to be a flattened YAML, from what I understand...
We used it in several places in k6, but dropped it for simpler hand-roller parses in the few places where it was used, so we could drop the relatively big dependency (grafana/k6#926). Still, if we can implement it in a sane manner, it will be quite useful. Especially if we can actually combine it with the environment variable and CLI flags source, it would allow for some quite flexible configurations!
The text was updated successfully, but these errors were encountered: