k3s/test/e2e_node/jenkins/gci-init.yaml

11 lines
413 B
YAML
Raw Normal View History

2016-06-29 08:56:07 +00:00
#cloud-config
runcmd:
- sudo mount /tmp /tmp -o remount,exec,suid
2016-06-29 08:56:07 +00:00
- ETCD_VERSION=v2.2.5
- curl -L https://github.com/coreos/etcd/releases/download/${ETCD_VERSION}/etcd-${ETCD_VERSION}-linux-amd64.tar.gz -o /tmp/etcd.tar.gz
- tar xzvf /tmp/etcd.tar.gz -C /tmp
- cp /tmp/etcd-${ETCD_VERSION}-linux-amd64/etcd* /tmp/
- rm -rf /tmp/etcd-${ETCD_VERSION}-linux-amd64/
- sudo usermod -a -G docker jenkins