Created
September 23, 2014 03:48
-
-
Save dewey4iv/7c4af552ce1d4b812f35 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
hostname: core01 | |
ssh_authorized_keys: | |
- ssh-rsa this works | |
coreos: | |
etcd: | |
discovery: https://discovery.etcd.io/9871e686f2902df850d7733597f86dec | |
addr: 10.0.1.101:4001 | |
peer-addr: 10.0.1.101:7001 | |
fleet: | |
public-ip: 10.0.1.101 | |
units: | |
- name: etcd.service | |
command: start | |
- name: fleet.service | |
command: start | |
- name: static.network | |
content: | | |
[Match] | |
Name=enp1s0f0 | |
[Network] | |
Address=10.0.1.101/24 | |
Gateway=10.0.1.1 | |
DNS=10.0.1.1 | |
DNS=8.8.8.8 | |
DNS=8.8.4.4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment