Skip to content

Instantly share code, notes, and snippets.

View travnewmatic's full-sized avatar

Travis Newman travnewmatic

View GitHub Profile
INFO: Downloading Selenium
Jun 28, 2019 4:01:21 AM hudson.PluginManager dynamicLoad
INFO: Attempting to dynamic load /var/lib/jenkins/plugins/selenium.jpi
Jun 28, 2019 4:01:32 AM hudson.model.UpdateCenter$DownloadJob run
SEVERE: Failed to install Selenium
java.io.IOException: Failed to dynamically deploy this plugin
at hudson.model.UpdateCenter$InstallationJob._run(UpdateCenter.java:2034)
at hudson.model.UpdateCenter$DownloadJob.run(UpdateCenter.java:1726)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
# https://github.com/rancher/k3os/blob/master/README.md#configuration-reference
# https://www.centlinux.com/2019/05/configure-network-on-k3os-machine.html
boot_cmd:
- "mkdir -p /mnt/e0945f92-350f-424c-a951-2a47a6c9f767 /var/lib/connman/ethernet_a8a159476f3f_cable"
ssh_authorized_keys:
- "github:travnewmatic"
write_files:
#!/bin/bash
# wipe old k3s
bash /usr/local/bin/k3s-agent-uninstall.sh; bash /usr/local/bin/k3s-uninstall.sh
# install k3s https://rancher.com/docs/k3s/latest/en/installation/install-options/
curl -sfL https://get.k3s.io | \
K3S_KUBECONFIG_MODE="644" \
sh -s - \
server \
--cluster-init \