-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NDS-998 / 1199 / 1200 / 1201 / 1213 / 1229: Fix Flannel MTU, ingress/…
…smtp configuration, and etcd timeouts (#91) * NDS-1201: Fixed deploy tools ingress configuration * NDS-1200: Fixed deploy tools bug with conditional register * NDS-998: Raised etcd timeouts to hopefully decrease random failures * NDS-1199: Hopefully fixed MTU issues between Flannel and CoreOS * Fixed copypasta typo in task description * Fixed incorrect variable name in roles/ndslabs-api-gui/defaults/main.yml * Fixed syntax error in roles/openstack-system/tasks/main.yml * Changed /media/storage to use ext4 instead of xfs by default * Adjusted playbooks/openstack-delete.yml to clean up known_hosts and boot volumes * Moved 'image' out of openstack group_vars and into site_vars, since this can differ significantly between OpenStack installations/projects * NDS-1213: Removed hardcoded flannel subnet * Removed known_hosts task, since it wasn't working.. removed Docker volume removal, since we no longer have a separate Docker volume * Adjust SDSC site variables (which are for some reason duplicated as group_vars) * NDS-1229: Added nodeSelector to ndslabs-smtp pod
- Loading branch information
1 parent
5505f41
commit b85fae3
Showing
15 changed files
with
89 additions
and
31 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
--- | ||
|
||
flavor_small: m1.large # 20G disk, 8G ram, 2cpu | ||
flavor_medium: m1.2xlarge # 20G disk, 16Gram, 8cpu | ||
flavor_large: m1.4xlarge # 20G disk, 64Gram, 16cpu | ||
flavor_medium: m1.large # 20G disk, 8G ram, 2cpu | ||
flavor_large: m1.2xlarge # 20G disk, 32Gram, 8cpu | ||
|
||
native_dns: sdsc.edu | ||
|
||
ndslabs_domain: "{{ logical_cluster_name }}.sdsc.ndslabs.org" # ??? | ||
ndslabs_domain: "{{ logical_cluster_name }}.ndslabs.org" | ||
|
||
smtp_host: smtp.sdsc.edu | ||
smtp_host: outbound.ucsd.edu | ||
smtp_tls: false |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
--- | ||
|
||
flavor_small: m1.large # 20G disk, 8G ram, 2cpu | ||
flavor_medium: m1.2xlarge # 20G disk, 16Gram, 8cpu | ||
flavor_large: m1.4xlarge # 20G disk, 64Gram, 16cpu | ||
flavor_medium: m1.large # 20G disk, 8G ram, 2cpu | ||
flavor_large: m1.2xlarge # 20G disk, 32Gram, 8cpu | ||
|
||
native_dns: sdsc.edu | ||
|
||
ndslabs_domain: "{{ logical_cluster_name }}.sdsc.ndslabs.org" # ??? | ||
ndslabs_domain: "{{ logical_cluster_name }}.ndslabs.org" | ||
|
||
smtp_host: smtp.sdsc.edu | ||
smtp_host: outbound.ucsd.edu | ||
smtp_port: 25 | ||
smtp_tls: false | ||
mtu: 1458 | ||
|
||
network_name: workbench | ||
flannel_mtu: 1408 | ||
image: "CoreOSStable1235" | ||
|
||
network_name: ndslabs_network | ||
|
||
site_name: sdsc |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[Service] | ||
Environment="DOCKER_OPT_BIP=--bip=10.200.0.1/16" | ||
Environment="DOCKER_OPT_MTU=--mtu={{ mtu }}" | ||
Environment="DOCKER_OPT_MTU=--mtu={{ flannel_mtu }}" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FLANNEL_NETWORK={{ flannel_subnet }}/{{ flannel_prefix }} | ||
FLANNEL_SUBNET=10.100.25.1/24 | ||
FLANNEL_MTU={{ mtu }} | ||
FLANNEL_MTU={{ flannel_mtu }} | ||
FLANNEL_IPMASQ=false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ support_email: [email protected] | |
webui_git_dropin_repo: '' | ||
webui_git_dropin_branch: '' | ||
workbench_name: 'Labs Workbench' | ||
spec_repo: 'https://github.com/nds-org/ndslabs-specs.git' | ||
spec_branch: 'master' | ||
spec_git_repo: 'https://github.com/nds-org/ndslabs-specs.git' | ||
spec_git_branch: 'master' | ||
smtp_user: '' | ||
smtp_password: '' | ||
gmail_user: '' | ||
|
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
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
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
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