func/pkg/builders/testdata/go-fn-with-private-deps
Matej Vašek 77e43bc8c6
Test adjustments (#2751)
* Use tiny instead of base BP builder.
* Decrease minimal required Go version.
* Make the self-signed certificate CA==true so it works with update-ca-trust utility.

Signed-off-by: Matej Vašek <mvasek@redhat.com>
2025-03-19 14:05:15 +00:00
..
.funcignore Add testcase for Go private repositories (#2748) 2025-03-17 03:49:36 +00:00
.gitignore Add testcase for Go private repositories (#2748) 2025-03-17 03:49:36 +00:00
README.md Add testcase for Go private repositories (#2748) 2025-03-17 03:49:36 +00:00
func.yaml Add testcase for Go private repositories (#2748) 2025-03-17 03:49:36 +00:00
go.mod Test adjustments (#2751) 2025-03-19 14:05:15 +00:00
go.sum Test adjustments (#2751) 2025-03-19 14:05:15 +00:00
handle.go Add testcase for Go private repositories (#2748) 2025-03-17 03:49:36 +00:00
handle_test.go Add testcase for Go private repositories (#2748) 2025-03-17 03:49:36 +00:00

README.md

Go HTTP Function

Welcome to your new Go Function! The boilerplate function code can be found in handle.go. This Function responds to HTTP requests.

Development

Develop new features by adding a test to handle_test.go for each feature, and confirm it works with go test.

Update the running analog of the function using the func CLI or client library, and it can be invoked from your browser or from the command line:

curl http://myfunction.example.com/

For more, see the complete documentation