Joe Siponen
Joe Siponen
I guess I will just have to nuke my development environment and start over. It is a shame that microk8s running on Multipass on Windows does not seem to give...
Ran into the same problem when trying to use a custom builder: ```yaml apiVersion: skaffold/v2beta27 kind: Config build: artifacts: - image: my-quarkus-project custom: buildCommand: ./skaffold_build.sh --profile dev dependencies: paths: -...
Scrap everything I said, having the empty file in place initially does not help in my case. This will only lead to an endless rebuild loop in `skaffold dev` for...
> Scrap everything I said, having the empty file in place initially does not help in my case. This will only lead to an endless rebuild loop in `skaffold dev`...
Found a reasonable workaround/solution. Open `C:\ProgramData\ssh\sshd_config` and add this line: ```sshd_config SetEnv WSLENV=SSH_CLIENT/u:SSH_CONNECTION/u:SSH_TTY/u:SSH_ORIGINAL_COMMAND/u ``` Restart sshd. Now when connecting the variables are set: ``` $ ssh host $ echo $SHELL...
Yes, as you say this implementation provides the correct environment at the win32 level - no argument from me there. The environment of win32 is not the environment of the...
When I try to delete a multipass lxd instance it will quite often result in a timeout: ```console $ multipass delete k8-devnode-2 [2022-09-22T09:30:58.018] [error] [lxd request] Timeout getting response for...
I tried using instance metadata in `runcmd` as described here: https://cloudinit.readthedocs.io/en/latest/topics/instancedata.html#using-instance-data This too did not work and I am guessing the problem is the one described in this issue. Workaround...
This seems to do the trick for dns resolution for `instance.multipass` on the host when using `lxd` as multipass `local.driver` on my Ubuntu 22.04 host: ```bash # Set dns mode...
That seems very logical to me - I don’t need another statefulset/pod when I already have a few to spare.