func icon indicating copy to clipboard operation
func copied to clipboard

Knative Functions client API and CLI

Results 205 func issues
Sort by recently updated
recently updated
newest added

When I execute 'func deploy --remote', it creates a Tekton pipeline and pipeline run. It seems to me that this pipeline is hardcoded. It would be great to customize it,...

**Description:** I have a project structured with a central `pkg` directory and a `tools` directory containing Knative functions that depend on code within the `pkg` directory. Specifically, I'm utilizing the...

Description: Functions is well-suited for AI agent integration. The serverless nature and isolated runtime environment of Functions make them ideal for creating lightweight, purpose-built services that can be dynamically created...

there are two issues to solve when working with private image registry: - ability to access the registry through some hostalias set in task pods if using on-cluster-build - ability...

As described in https://github.com/knative/func/issues/2586, we need to integrate the Go CloudEvents functions with JobSink - when the env variable `K_EXECUTION_MODE` is equal to `batch` the runtime will read the event...

triage/accepted

When using the default buildpack image (ghcr.io/knative/builder-jammy-tiny) the BP_GO_BUILD_LDFLAGS environment variable has no effect. It is picked up by the buildpack: ``` Provided Environment Variables BP_GO_BUILD_LDFLAGS=-X function/build.ProgramVersion=blafromflags ``` But not...

Currently we have zero documentation how to create an `instanced` Go-lang function, on our developer guide: * https://github.com/knative/func/blob/main/docs/function-templates/golang.md Perhaps it would also make sense to change the default to be...

There are some internal images that are hosted at docker registry. We need to remove that dependency. - [x] pack builder lifecycleimage will be mirrored (most likely) into the ghcr...

``` $ func version v0.44.0 $ func create --language typescript $ func build --image 10.24.142.129:30001/func:master --registry=10.24.142.129:30001 --registry insecure --push .... Error: cannot write image index: PUT http://10.24.142.129:30001/v2/func:master: MANIFEST_INVALID: manifest invalid;...

According to the documentation if I wanted to have a environment variable embedded in the image, I could use buildEnvs and pass them to the buildpack: - https://github.com/knative/func/blob/main/docs/reference/func_yaml.md#buildenvs - https://paketo.io/docs/howto/configuration/#image-embedded-environment-variables...