Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Coreos update 1.10 #2552

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
40 changes: 20 additions & 20 deletions gen/build_deploy/aws.py
Expand Up @@ -113,62 +113,62 @@ def validate_provider(provider):

region_to_ami_map = {
'ap-northeast-1': {
'coreos': 'ami-93f2baf4',
'stable': 'ami-93f2baf4',
'coreos': 'ami-44a03c22',
'stable': 'ami-44a03c22',
'el7': 'ami-e21fd884',
'natami': 'ami-55c29e54'
},
'ap-southeast-1': {
'coreos': 'ami-aacc7dc9',
'stable': 'ami-aacc7dc9',
'coreos': 'ami-d085f3ac',
'stable': 'ami-d085f3ac',
'el7': 'ami-3b8ee058',
'natami': 'ami-b082dae2'
},
'ap-southeast-2': {
'coreos': 'ami-9db0b0fe',
'stable': 'ami-9db0b0fe',
'coreos': 'ami-21ce3c43',
'stable': 'ami-21ce3c43',
'el7': 'ami-c2e501a0',
'natami': 'ami-996402a3'
},
'eu-central-1': {
'coreos': 'ami-903df7ff',
'stable': 'ami-903df7ff',
'coreos': 'ami-90c152ff',
'stable': 'ami-90c152ff',
'el7': 'ami-868531e9',
'natami': 'ami-204c7a3d'
},
'eu-west-1': {
'coreos': 'ami-abcde0cd',
'stable': 'ami-abcde0cd',
'coreos': 'ami-32d1474b',
'stable': 'ami-32d1474b',
'el7': 'ami-5f03c426',
'natami': 'ami-3760b040'
},
'sa-east-1': {
'coreos': 'ami-c11573ad',
'stable': 'ami-c11573ad',
'coreos': 'ami-78befd14',
'stable': 'ami-78befd14',
'el7': 'ami-5d2f5d31',
'natami': 'ami-b972dba4'
},
'us-east-1': {
'coreos': 'ami-1ad0000c',
'stable': 'ami-1ad0000c',
'coreos': 'ami-e582d29f',
'stable': 'ami-e582d29f',
'el7': 'ami-abb1a2d0',
'natami': 'ami-4c9e4b24'
},
'us-gov-west-1': {
'coreos': 'ami-e441fb85',
'stable': 'ami-e441fb85',
'coreos': 'ami-9579f7f4',
'stable': 'ami-9579f7f4',
'el7': 'ami-e58c0f84',
'natami': ''
},
'us-west-1': {
'coreos': 'ami-b31d43d3',
'stable': 'ami-b31d43d3',
'coreos': 'ami-e0696980',
'stable': 'ami-e0696980',
'el7': 'ami-f6427596',
'natami': 'ami-2b2b296e'
},
'us-west-2': {
'coreos': 'ami-444dcd24',
'stable': 'ami-444dcd24',
'coreos': 'ami-65269d1d',
'stable': 'ami-65269d1d',
'el7': 'ami-6eed1a16',
'natami': 'ami-bb69128b'
}
Expand Down
2 changes: 0 additions & 2 deletions gen/coreos/cloud-config.yaml
Expand Up @@ -11,5 +11,3 @@ coreos:
- name: locksmithd.service
mask: true
command: stop
- name: systemd-resolved.service
command: stop
12 changes: 6 additions & 6 deletions packages/mesos/extra/start_mesos.sh
Expand Up @@ -6,12 +6,12 @@ set -e
function coreos_networkd_config() {
network_config="/etc/systemd/network/dcos.network"
sudo tee $network_config > /dev/null<<'EOF'
[Match]
Type=bridge
Name=docker* m-* d-* vtep*
[Match]
Type=bridge
Name=docker* m-* d-* vtep*

[Link]
Unmanaged=yes
[Link]
Unmanaged=yes
EOF
}

Expand All @@ -21,7 +21,7 @@ if [[ "${distro}" == 'coreos' ]]; then
echo "Configuring systemd-networkd to ignore docker bridge and DC/OS overlay interfaces..."
coreos_networkd_config

if systemctl is-enabled systemd-networkd > /dev/null; then
if systemctl is-active systemd-networkd > /dev/null; then
sudo systemctl restart systemd-networkd
fi
fi
Expand Down