-
Notifications
You must be signed in to change notification settings - Fork 83
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Question about the new env var and it being undefined in Universe.
@@ -110,6 +111,7 @@ def main(): | |||
marathon_jenkins_port = os.environ['PORT1'] | |||
mesos_master = os.environ['JENKINS_MESOS_MASTER'] | |||
ssh_known_hosts = os.environ['SSH_KNOWN_HOSTS'] | |||
marathon_name = os.environ['MARATHON_NAME'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will fail without an accompanying change to Universe. Maybe this should be os.getenv('MARATHON_NAME', 'marathon')
and set a default to prevent failures.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's the only thing I'm adding in the new Universe release and should be there forever after that. Still think it's worth setting the default in code? Just seemed odd to me being the only default set in code.
The test errors are expected - SDK portions are not in this branch. |
* Fixes from master applied to 3.5.x (#251) * Update mesos plugin hash to include instrumentation * Update default agent to 0.6.0 (#207) * Update mesos plugin (#210) * Update jackson plugin to latest * Discover jenkins with autoip host name instead of host:port (#249) Address [COPS-3395](https://jira.mesosphere.com/browse/COPS-3395) * Always update the URL in mesos cloud config (#252) * Always update the URL in mesos cloud config The assigned port is dynamic and may change between runs. * Always update Jenkins URL * Update CHANGELOG for 3.5.1 (#253) * Changed Jenkins URL to support Jenkins when deployed to a MoM. (#261) * Fixing Mesos DNS name handling. (#273) * [COPS-4290] Bump jenkins base version and plugins (#283) * bump jenkins base tech 2.150.1 * Setting 'keepalive' for nginx Research has indicated that this could help reduce '504 timeout' errors and stress on the system when nginx is functioning as a revers proxy. Adding the server directives for keepalive as noted here: http://nginx.org/en/docs/http/ngx_http_upstream_module.html#keepalive * bump libmesos version * remove stale files * removing stale files * bump blue ocean plugins * updating jenkins lts release * bump branch api plugin * seperate plugins from dockerfile * seperate plugins * nit: newline * Bump plugins to help with jenkins timeouts (#286) * udate plugins and nginx * bump plugin * remove unused file * Fix Jenkins on strict mode (#290) * new LTS version of Jenkins (#292) blueocean 1.14.0 nginx 1.10.3 various plugin updates * new LTS version of Jenkins (#294) * new LTS version of Jenkins (#295)
* Fixes from master applied to 3.5.x (#251) * Update mesos plugin hash to include instrumentation * Update default agent to 0.6.0 (#207) * Update mesos plugin (#210) * Update jackson plugin to latest * Discover jenkins with autoip host name instead of host:port (#249) Address [COPS-3395](https://jira.mesosphere.com/browse/COPS-3395) * Always update the URL in mesos cloud config (#252) * Always update the URL in mesos cloud config The assigned port is dynamic and may change between runs. * Always update Jenkins URL * Update CHANGELOG for 3.5.1 (#253) * Changed Jenkins URL to support Jenkins when deployed to a MoM. (#261) * Fixing Mesos DNS name handling. (#273) * [COPS-4290] Bump jenkins base version and plugins (#283) * bump jenkins base tech 2.150.1 * Setting 'keepalive' for nginx Research has indicated that this could help reduce '504 timeout' errors and stress on the system when nginx is functioning as a revers proxy. Adding the server directives for keepalive as noted here: http://nginx.org/en/docs/http/ngx_http_upstream_module.html#keepalive * bump libmesos version * remove stale files * removing stale files * bump blue ocean plugins * updating jenkins lts release * bump branch api plugin * seperate plugins from dockerfile * seperate plugins * nit: newline * Bump plugins to help with jenkins timeouts (#286) * udate plugins and nginx * bump plugin * remove unused file * Fix Jenkins on strict mode (#290) * new LTS version of Jenkins (#292) blueocean 1.14.0 nginx 1.10.3 various plugin updates * new LTS version of Jenkins (#294) * new LTS version of Jenkins (#295) * Add gid, uid=99 for nobody user.
Backporting to 3.5.x branch.