Commit Graph

1488 Commits

Author SHA1 Message Date
Reed Allman
d6ed0dca8e Merge pull request #177 from fnproject/fnlb-version
Adding per-node version check
2017-08-02 12:35:25 -07:00
Denis Makogon
da0ab23f63 Adding per-node version check
Version check happens at start and every time attempting to add new node via API

Implements: #153
2017-08-01 20:37:54 +03:00
CI
ba77624082 fnlb: 0.0.15 release [skip ci] 0.0.15 2017-08-01 02:40:16 +00:00
CI
eba9954063 fn tool: 0.3.37 release [skip ci] fn-0.3.37 2017-08-01 02:39:23 +00:00
CI
678c3b4aa3 functions: 0.3.38 release [skip ci] 0.3.38 2017-08-01 02:37:48 +00:00
Chad Arimura
b344a9dd81 test slack integration 2017-07-31 19:29:01 -07:00
Travis Reeder
fdfc11bd14 Updated env var name 2017-07-31 17:42:12 -07:00
Travis Reeder
f1fefe432e rebased on master 2017-07-31 16:43:48 -07:00
Travis Reeder
921a323645 Debugging 2017-07-31 16:03:12 -07:00
Travis Reeder
1bda8c515a debugging... 2017-07-31 16:03:05 -07:00
Travis Reeder
59b8f76723 Added docker:dind as a gitlab service. 2017-07-31 16:02:58 -07:00
Travis Reeder
1adb800ce1 Changed port and testing to see that build will fail on fn commands. 2017-07-31 16:02:47 -07:00
Travis Reeder
3df557fecc changed docker_user to docker_username 2017-07-31 16:02:39 -07:00
Travis Reeder
2d4d1591ab Runs through the common fn commands to ensure we don't break em. 2017-07-31 16:02:32 -07:00
Travis Reeder
5370bc86fa Added Go boilerplate 2017-07-31 16:01:03 -07:00
CI
84bbfc0003 fnlb: 0.0.14 release [skip ci] 0.0.14 2017-07-31 19:46:02 +00:00
CI
d8767388b8 fn tool: 0.3.36 release [skip ci] fn-0.3.36 2017-07-31 19:45:09 +00:00
CI
a4f7f3aa86 functions: 0.3.37 release [skip ci] 0.3.37 2017-07-31 19:43:33 +00:00
Reed Allman
a7e29a6ace Merge pull request #174 from fnproject/lb-die
don't wait for signals to die
2017-07-31 12:34:53 -07:00
CI
1328388526 fnlb: 0.0.13 release [skip ci] 0.0.13 2017-07-31 19:16:52 +00:00
CI
487b549017 fn tool: 0.3.35 release [skip ci] fn-0.3.35 2017-07-31 19:15:56 +00:00
CI
0ef171dff5 functions: 0.3.36 release [skip ci] 0.3.36 2017-07-31 19:14:19 +00:00
Reed Allman
11b5c4ce67 Merge pull request #168 from fnproject/fix-async-task-reserving
Fix async task reserving
2017-07-31 12:05:31 -07:00
Denis Makogon
edb1279d57 Fixing task deleting to be similar to task getter 2017-07-31 21:37:29 +03:00
Denis Makogon
333fc66906 Making http client global to async runner 2017-07-31 21:22:12 +03:00
Denis Makogon
7c22468b81 Addressing comments 2017-07-31 21:15:08 +03:00
Denis Makogon
10566ba1a8 Use better http client while deleting task 2017-07-31 21:14:12 +03:00
Denis Makogon
f1e46ebfe3 Using better HTTP client 2017-07-31 21:14:12 +03:00
Denis Makogon
2d7f54bffe Addressing comments 2017-07-31 21:14:12 +03:00
Denis Makogon
bb8f12ece9 Fixing tests and CI file 2017-07-31 21:14:11 +03:00
Denis Makogon
49fe3eb11a Fixing FMT errors
Do we run go-fmt in CI?
2017-07-31 21:14:11 +03:00
Denis Makogon
721c0f1255 Improving erro handling while trying to reserve tasks at async runner
Each time when MQ becomes unreachable HTTP GET /tasks returned HTTP 500
 and code was not handling this case except expecting networking errors.
 After that it tried to unmarshal empty response body that caused another sort of an error.

 This patch triggers error based on http response code, explicitly checking if response code
 is something unexpected (not HTTP 200 OK).

 Response status code for /tasks for changed from 202 Accepted to 200 OK according to swagger doc.
2017-07-31 21:14:11 +03:00
CI
d3243b3ac9 fnlb: 0.0.12 release [skip ci] 0.0.12 2017-07-30 23:54:20 +00:00
CI
e618ceee07 fn tool: 0.3.34 release [skip ci] fn-0.3.34 2017-07-30 23:53:27 +00:00
CI
ee1656980c functions: 0.3.35 release [skip ci] 0.3.35 2017-07-30 23:51:51 +00:00
CI
37f9d578c6 fnlb: 0.0.11 release [skip ci] 0.0.11 2017-07-30 23:42:58 +00:00
CI
651426d00b fn tool: 0.3.33 release [skip ci] fn-0.3.33 2017-07-30 23:42:03 +00:00
CI
c93ed3b87c functions: 0.3.34 release [skip ci] 0.3.34 2017-07-30 23:40:24 +00:00
Mukhtar Haji
e69ceebed4 Building of Java project with no dependencies (#165)
* Bug: Fix building of Java project with no deps

Currently there is no way to perform a Docker `COPY` where the source
directory has no files, i.e. no way to ignore the error. So this change
puts all the dependencies into the /function/target directory whereas
they were in the /function/target/dependency directory before. This has
the benefit of knowing that the COPY command will always succeed even if
there are no dependencies as atleast the function jar itself will be in
/function/target directory.

* Add fail-never to first maven invocation

This is important as if the pom.xml has a compilation step, for example,
generate some source for me from my proto files in my src/main/resource
directory, this would fail as we have not copied the source directory in
yet.
2017-07-30 16:32:12 -07:00
Reed Allman
53cbe2d5a4 stop riding the short bus, no clue why this stuff is here. only adds confusion, removing (#1)
server exposes Router field
2017-07-30 16:31:31 -07:00
Reed Allman
2a7d9072d6 don't wait for signals to die 2017-07-28 17:17:16 -07:00
CI
85f7a53cc0 fnlb: 0.0.10 release [skip ci] 0.0.10 2017-07-28 19:09:06 +00:00
CI
9517a7d357 fn tool: 0.3.32 release [skip ci] fn-0.3.32 2017-07-28 19:08:09 +00:00
CI
153487002b functions: 0.3.33 release [skip ci] 0.3.33 2017-07-28 19:06:32 +00:00
CI
dabf1f031d fnlb: 0.0.9 release [skip ci] 0.0.9 2017-07-28 18:57:15 +00:00
CI
bd21813568 fn tool: 0.3.31 release [skip ci] fn-0.3.31 2017-07-28 18:56:21 +00:00
CI
5285b5d08e functions: 0.3.32 release [skip ci] 0.3.32 2017-07-28 18:54:44 +00:00
CI
90e1db8da2 fnlb: 0.0.8 release [skip ci] 0.0.8 2017-07-28 18:45:38 +00:00
CI
eea868f7b2 fn tool: 0.3.30 release [skip ci] fn-0.3.30 2017-07-28 18:44:41 +00:00
CI
329281232e functions: 0.3.31 release [skip ci] 0.3.31 2017-07-28 18:42:59 +00:00