1821 Commits

Author SHA1 Message Date
Carlos Eduardo
eb16bea8f7 Add talk on RISC-V Summit 2019
Spoke on RISC-V Summit 2019 about cloud technologies on RISC-V architecture and did a demo of OpenFaaS.

Signed-off-by: Carlos de Paula <me@carlosedp.com>
2020-02-22 19:05:05 +00:00
Lars Lehtonen
b4a6872c04 gateway/handlers: fix use of testing.T inside goroutine
Signed-off-by: Lars Lehtonen <lars.lehtonen@gmail.com>
2020-02-22 19:03:24 +00:00
Thomas Schmidt
67598e58c5 Update projects to use Go 1.13
Fixes #1442

Signed-off-by: Thomas Schmidt <thomaschmidt@gmail.com>
2020-02-22 19:01:49 +00:00
Alex Ellis (OpenFaaS Ltd)
45300420fe Set order for events
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2020-02-21 13:41:56 +00:00
Jonatas Baldin
35e2252a87 Add The State of Open Source Serverless talk
Signed-off-by: Jonatas Baldin <jonatas.baldin@gmail.com>
2020-02-21 13:41:20 +00:00
Alex Ellis (OpenFaaS Ltd)
94e50f56c4 Add Ramiro's talk
Thanks @rberrelleza, closes #1446

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2020-02-21 08:49:06 +00:00
Alex Ellis (OpenFaaS Ltd)
500edc6cb9 Add faasd link
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2020-02-21 08:48:20 +00:00
Alex Ellis (OpenFaaS Ltd)
4d38de67bb Update blog posts and events.
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2020-02-21 08:31:20 +00:00
Alistair Hey
38d6573c22 Add our Amazing Kubecon EU 2020 events to community.md
Signed-off-by: Alistair Hey <alistair@heyal.co.uk>
2020-02-14 14:27:38 +00:00
Alex Ellis (OpenFaaS Ltd)
8372e8ccde Add some events
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2020-02-13 11:22:56 +00:00
Alex Ellis
6afae214e3
Remove 2x bronze sponsors 2020-02-07 21:52:41 +00:00
Alex Ellis
776ce178b6
Update README.md 2020-02-06 08:20:20 +00:00
Alex Ellis (OpenFaaS Ltd)
e66586e35b Add Platinum sponsor for 12mo
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2020-02-05 12:02:52 +00:00
hasheddan
5fa7e0f8a0 Use license-check docker image instead of curl
Optimizes Docker builds by copying from license-check Docker image
instead of using curl to download the tool.

Signed-off-by: hasheddan <georgedanielmangum@gmail.com>
2020-02-04 15:51:03 +00:00
Alex Ellis
0fc5eeefb9
Update CONTRIBUTING.md 2020-02-04 11:32:21 +00:00
Alex Ellis
3ad405450b
Update ROADMAP.md 2020-02-04 11:31:18 +00:00
Alex Ellis
82ae65e324
Remove Platinum sponsor and add 2x bronze 2020-02-01 13:35:00 +00:00
Alex Ellis
36711cf41b
Update CONTRIBUTING.md 2020-02-01 11:21:09 +00:00
John McCabe
e244e5ca74 Fix envvar handling in deploy_stack.ps1
Adds the missing $env:BASIC_AUTH and $env:AUTH_URL envvars to the
windows deploy_stack.ps1 script.

Signed-off-by: John McCabe <john@johnmccabe.net>
2020-01-25 08:21:55 +00:00
Vivek Singh
9fd8a59b89 Update logs to reudce verbosity and consistency
Signed-off-by: Vivek Singh <vivekkmr45@yahoo.in>
2020-01-24 12:39:16 +00:00
Alex Ellis (OpenFaaS Ltd)
6c1784e7dc Add notes
Adds a note requested by Lucas.

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2020-01-21 12:21:13 +00:00
Alex Ellis (OpenFaaS Ltd)
fec9bf3ae5 Add note on Go modules
Addinga note now that faas-netes, k3sup, and the operator have
been migrated.

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2020-01-21 12:08:08 +00:00
Alistair Hey
b9c43d53cd Add blog to community.md Serverless made accessible
Signed-off-by: Alistair Hey <alistair@heyal.co.uk>
2020-01-20 10:19:46 +00:00
Alistair Hey
409a199e7c Update community.md with more blog posts
Signed-off-by: Alistair Hey <alistair@heyal.co.uk>
2020-01-17 14:36:32 +00:00
Alex Ellis
ad708d4f3d
Trim curators list and rename BurtonR to lowercase 2020-01-17 08:37:45 +00:00
Alex Ellis (OpenFaaS Ltd)
7c6098b91f Remove 2x bronze sponsors
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2020-01-16 15:32:33 +00:00
Matevz Mihalic
794b245653 Update ADOPTERS.md
Signed-off-by: Matevz Mihalic <matevz.mihalic@gmail.com>
2020-01-16 14:39:27 +00:00
Vivek Singh
1b12ea841f Update API docs for secret update
Signed-off-by: Vivek Singh <vivekkmr45@yahoo.in>
2020-01-07 19:57:24 +00:00
Alex Ellis (OpenFaaS Ltd)
4873e08d73 Add test to show TransferEncoding being passed to function
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2020-01-06 21:41:05 +00:00
Alex Ellis (OpenFaaS Ltd)
6a30ce1e36 Add transfer-encoding to watchdog env-vars if present
The Content-Type header must be ignored when the Transfer
Encoding is set to "chunked" because the length is unknown

Go sets this to -1 and we pass that onto the user:
https://golang.org/src/net/http/transfer.go

The value of Content_Length is currently set to -1 in this
scenario, however it caused some confusion for at least one
user in issue: #1422.

The Http_Transfer_Encoding value was tested by running the
watchdog on Linux with "env" as the fprocess and an extra
header to "curl"

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2020-01-06 21:41:05 +00:00
Alistair Hey
09b867559d Change the node example in readme to node12
Signed-off-by: Alistair Hey <alistair@heyal.co.uk>
2020-01-06 21:36:01 +00:00
Alistair Hey
250b3fccda Add various posts to the community.md file
Signed-off-by: Alistair Hey <alistair@heyal.co.uk>
2020-01-06 21:12:07 +00:00
Alistair Hey
faa8c75018 Add contributing to OF to community.md
I have also added the 2020 sections for blogs & events!

Signed-off-by: Alistair Hey <alistair@heyal.co.uk>
2020-01-06 19:54:14 +00:00
Alex Ellis
64cbc2272e
Update CONTRIBUTING.md 2020-01-01 15:30:23 +00:00
Alistair Hey
cf6e9ed6b2 Add Alistair Hey Blog to community.md
Signed-off-by: Alistair Hey <alistair@heyal.co.uk>
2019-12-31 09:52:30 +00:00
Alistair Hey
3220e1b88f Fix Typo in community.md file
Signed-off-by: Alistair Hey <alistair@heyal.co.uk>
2019-12-30 19:54:04 +00:00
Alistair Hey
54d2447975 Update compose stacks to latest gateway and basic-auth
Signed-off-by: Alistair Hey <alistair@heyal.co.uk>
2019-12-27 18:55:03 +00:00
Alex Ellis (OpenFaaS Ltd)
80b6976c10 Update Golang versions to 1.12
Tested with local Docker build for each component.

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2019-12-27 17:53:19 +00:00
Alex Ellis (OpenFaaS Ltd)
b45e2a52a4 Bump alpine to 3.11
There's a new release which appears to have no apparent down-
sides or breakages.

https://www.alpinelinux.org/posts/Alpine-3.11.2-released.html

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2019-12-27 10:08:02 +00:00
Lucas Roesler
76e463a7a0 Always apply the function prefix trim for async functions
**What**
- Always apply the `FunctionPrefixTrimmingURLPathTransformer` when
  enqueueing async function requests. This ensures that the context
  information sent to the function is correct

Resolves #85

Signed-off-by: Lucas Roesler <roesler.lucas@gmail.com>
2019-12-25 17:40:39 +00:00
Alex Ellis (OpenFaaS Ltd)
7445998092 Remove queue-worker from arm builds
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2019-12-24 13:59:46 +00:00
Alex Ellis (OpenFaaS Ltd)
b9a3476bca Add providers
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2019-12-19 16:26:00 +00:00
Alistair Hey
59b7839236 Change how and when we fetch and parse namespace info
Signed-off-by: Alistair Hey <alistair@heyal.co.uk>
2019-12-19 10:32:46 +00:00
Alex Ellis (OpenFaaS Ltd)
2fd7989d3f Update video links
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2019-12-17 11:43:35 +00:00
Alex Ellis
db47a8c3f5
Update ratehub logo for Chris 2019-12-17 08:22:00 +00:00
Alistair Hey
04fead5eab Hide the namespace selector when on swarm or <2 K8s ns
We now hide the new namespace dropdown selector when
there is only 1 namespace, or when we are on swarm
This is also hidden in the function create page and
the function detail page

Signed-off-by: Alistair Hey <alistair@heyal.co.uk>
2019-12-15 17:06:20 +00:00
Utsav Anand
d90288143d Update travis link from .org to .com
Signed-off-by: Utsav Anand <utsavanand2@gmail.com>
2019-12-10 19:37:52 +00:00
Edward Wilde
509ea710e9 Update core OpenFaaS component in docker-compose
Signed-off-by: Edward Wilde <ewilde@gmail.com>
2019-12-10 11:16:27 +00:00
Bruno Miguel Custódio
03dc8824d2 Support customising the NATS Streaming channel.
Signed-off-by: Bruno Miguel Custódio <brunomcustodio@gmail.com>
2019-12-10 11:15:52 +00:00
Alex Ellis (OpenFaaS Ltd)
3422bdcce9 Update contributing
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2019-12-09 11:36:04 +00:00