Bill Robinson

Results 30 comments of Bill Robinson

@kjtanaka Thanks! This comment saved me after an hour of frustration. Turns out using `createmedium` instead of `createhd` was the change I needed to make. I modified your Vagrantfile slightly...

It does not support etcd 3. I had [started working on it](https://github.com/dseevr-dev/netplugin/tree/upgrade_etcd), but I wasn't able to finish it

@liuflylove666 I don't work on this project anymore, and I don't know if there are any plans to add etcd 3 support ☹️

This will be fixed as part of the updater stuff I am working on

@gaurav-dalvi because a dummy value is written if no key is provided. See: https://github.com/contiv/install/blob/a1578eb328936937325dec18f2f99c72d2623970/install/k8s/install.sh#L214-L224 Line 224 shouldn't be run again if the key already exists. That check is one part...

You can skip the step which manually downloads the Vagrant box. The `make demo-legacy-swarm` and other `demo-*` targets will automatically download the boxes as necessary. Do you have VirtualBox installed?...

This format error is caused by a version of `modprobe` that does not support compressed kernel modules... I can't remember what the solution was... I think alpine's `modprobe` doesn't support...

Per the private issue we had to track this, starting etcd before the other services actually made the problem worse. Both nodes in the demo environment come up in the...

If you just need some random alphanumeric (lowercase) characters: ```rb require "securerandom" token = SecureRandom.hex(16) ```

@basvandenbrink thanks for the reminder about this issue. we are actually working on this right now