Kimmo Lehto
Kimmo Lehto
It is possible to fix in json/yaml-api backward compatible way. Not in go-api compatible way, not sure about the crd compatibility, maybe that is a showstopper. Breaking go-compatibility is not...
The installation instructions are right there on the front page (README) after the download link: https://github.com/1kc/razer-macos#installation-instructions > If you get a security warning when opening the app, you need to...
I think this is something that should not be done, ssh has already solved this with ssh-agent.
Yes it intentionally picks a different address than the "public" address (ssh connection address) here https://github.com/k0sproject/k0sctl/blob/5de84fb30a427a2b4dbb73f9fd0b959d5582a271/configurer/linux.go#L264-L266 For many cases this works when the primary address is the public one and...
There's something strange in the docs site and search engines, if I google "k0s config", the first hit takes me to v0.9.0.  There's a version selector pulldown with v1.25+:...
Yes. Stdout = Information that user requested, interactive elements, payload Stderr = Diagnostics, logging, errors, stuff you don't want to include when capturing/redirecting payload Things like `foo --help | less`,...
If you don't set `uploadBinary: true` k0s binary will be downloaded from github directly using the host instead of being uploaded from the k0sctl client machine. Is this enough or...
1. I would consider removing all node-specific config keys from the yaml and move them to something like `/etc/k0s/k0scontroller.conf` or `/etc/k0s/k0scontroller.service.d/storage.conf` or similar. `k0s install` would create a placeholder config...
- Detect init system (done in https://github.com/k0sproject/rig/tree/main/initsystem) - Write out the template (they are already in go text/template format in k0s sources) - Implement `k0s start` and `k0s stop` (also...
The custom validation error messages from `sl.ReportError()` are a bit silly too: ``` // sl.ReportError(field interface{}, fieldName string, structFieldName string, tag string, param string) sl.ReportError(hosts, "hosts", "this does nothing", "some...