Kimmo Lehto

Results 287 comments of Kimmo Lehto

Flatcar is the only one that has a custom [K0sBinaryPath() ](https://github.com/k0sproject/k0sctl/blob/main/configurer/linux/flatcar.go#L34-L36) currently.

It would be possible to detect when `/usr` is readonly and then use `/opt` as fallback. I'd rather not make it configurable because I have a hunch that it can...

But knowing which OS you're running on @khumps would be interesting.

An image will be available at quay once footloose fork release is rolled out.

`(ip route list scope global | grep -E "\b(172|10|192\.168)\.") || (ip route list | grep -m1 default)` This is the command k0sctl uses to detect the private interface. What does...

So, I think you don't have a private interface and it picks up eth0 as the fallback but only on the first round 🤔

Maybe it could be changed from `map[string]string` to `map[string]any` 🤔 This: ```go for name, value := range args { apiServerArgs = append(apiServerArgs, fmt.Sprintf("--%s=%s", name, value)) } ``` would be changed...

`service-account-issuer: "https://some-issuer --service-account-issuer=https://some-other-issuer"` this worked? 😮

Maybe this should be kept open and solved properly.

```go fs.StringArrayVar(&o.ServiceAccounts.Issuers, "service-account-issuer", o.ServiceAccounts.Issuers, ""+ ``` ```go // StringArrayVar defines a string flag with specified name, default value, and usage string. // The argument p points to a []string variable...