-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathuser-data.sample
More file actions
47 lines (42 loc) · 1.24 KB
/
Copy pathuser-data.sample
File metadata and controls
47 lines (42 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#cloud-config
coreos:
etcd:
# generate a new token for each unique cluster from https://discovery.etcd.io/new
# WARNING: replace each time you 'vagrant destroy'
#discovery: https://discovery.etcd.io/<token>
addr: $public_ipv4:4001
peer-addr: $public_ipv4:7001
fleet:
public-ip: $public_ipv4
units:
- name: etcd.service
command: start
- name: fleet.service
command: start
- name: docker-tcp.socket
command: start
enable: true
content: |
[Unit]
Description=Docker Socket for the API
[Socket]
ListenStream=2375
Service=docker.service
BindIPv6Only=both
[Install]
WantedBy=sockets.target
- name: zfs-builder.service
command: start
enable: true
content: |
[Unit]
Description=ClusterHQ ZFS builder service for CoreOS
Documentation=https://github.com/clusterhq/zfs-binaries
After=network.target
[Service]
Environment=TMPDIR=/var/tmp
LimitNOFILE=1048576
LimitNPROC=1048576
ExecStart=sh -c "cd /home/core; curl -s https://raw.githubusercontent.com/ClusterHQ/gentoo/master/metabuild.sh |sh"
[Install]
WantedBy=multi-user.target