Bright Zheng
Bright Zheng
> the existing workaround to modifying the cluster is: > > * modify the `kubeadm-config` ConfigMap with your new values. This is not required based on my experiments. As once...
Rebuilt the image with: ```Docker FROM arm64v8/ubuntu:18.04 ... ``` And I could spin up the cluster but couldn't ssh into it -- the SSH service was not properly bootstrapped. ```sh...
I just figured out the root cause which is related to `cgroups` compatibility issues. The workaround is to remove one line of these parameters, like this: ```go runArgs := []string{...
I'm on Mac, and my local `/etc/resolv.conf` is like this: ``` cat /etc/resolv.conf # ... nameserver 192.168.10.1 ``` So I'm really trying to link up these dots to have a...
Changing the `/sys/fs/cgroup` mount from `ro` to `rw` does the trick. But to determine whether we should apply `ro` or `rw`, having a check on `docker info -f "{{.CgroupVersion}}"` may...
This patch would assume that - if `CgroupVersion` is 1 it will mount as `-v /sys/fs/cgroup:/sys/fs/cgroup:ro`; - else if `CgroupVersion` is 2 it will mount as `-v /sys/fs/cgroup:/sys/fs/cgroup:rw`. In your...
Well, just did some experiment and here might be a potential workaround: 1. update the `footloose.yaml` file with extra node; 2. now `footloose show` will see that the "extra" node...
While in footloose-powered container VM, how can I add/load extra kernel modules? For now, there are very few modules loaded and I believe there is a need to have more...
Well, I just learned from the community that there is such a great tool called `wks`. And what you shared is really a great use case. But I’m keen to...
I've eventually figured out the docker image, mainly based on `kind`, which can be used to bootstrap Kubernetes cluster by using `kubeadm`. The `docker run` command is as below: ```sh...