func
func copied to clipboard
Knative Functions client API and CLI
I'm trying to setup knative functions with MTChannelBasedBroker based on KafkaChannels. A Ping-Source is producing events every minute: ```yaml apiVersion: sources.knative.dev/v1 kind: PingSource metadata: name: aia-cron-ping spec: schedule: "*/1 *...
We [have a report](https://cloud-native.slack.com/archives/C04LKEZUXEE/p1693134339282639) that the metrics endpoints for Go are different than the endpoints in other language runtimes: > Hey everyone! I'm trying to extract metrics from my functions...
# Func Subscribe Feature focused on subscribing to events from a broker, for consumption by the Function. ```bash func subscribe com.foo.bar [--source my-broker] ``` While the `func` is an abstraction...
As described in https://github.com/knative/func/issues/2586, we need to integrate the Quarkus CloudEvents functions with JobSink - when the env variable `K_EXECUTION_MODE` is equal to `batch` the runtime will read the event...
As described in https://github.com/knative/func/issues/2586, we need to integrate the Node JS CloudEvents functions with JobSink - when the env variable `K_EXECUTION_MODE` is equal to `batch` the javascript runtime will read...
As described in https://github.com/knative/func/issues/2586, we need to integrate the Python CloudEvents functions with JobSink - when the env variable `K_EXECUTION_MODE` is equal to `batch` the python runtime will read the...
Buildpacks builder require volume binding in builder container to provide secrets. https://paketo.io/docs/howto/configuration/#bindings Need to support in func.yaml something like build: buildVolumes: .....
Running `func subscribe --filter type=org.apache.camel.event.aws.s3.getObject --filter type=org.apache.camel.event.aws.sqs.getObject` should result in two triggers, and not just one. ``` cat func.yaml specVersion: 0.36.0 name: wjaxs3-logger runtime: go created: 2024-11-05T14:06:23.457899513+01:00 invoke: cloudevent deploy:...
When no registry is set, and then doing a `kn func deploy` I am asked for the registry name. However, I see the following error there: ``` 9:02 ➜ kn...
When stopping a Quarkus function with CTRL-C on `kn func run` I always get a memory dump, that is quite disturbing and noisy. I think it would be ok to...