Christoph Stäbler
Christoph Stäbler
**What happened**: In the Dockerfiles we had `--mount=type=cache,target=/root/.cache/go-build` to speed up the builds: https://github.com/nmstate/kubernetes-nmstate/blob/20dc69bdc67eadf915639b907e4faf27f2724a32/build/Dockerfile#L15 https://github.com/nmstate/kubernetes-nmstate/blob/20dc69bdc67eadf915639b907e4faf27f2724a32/build/Dockerfile.operator#L14 Unfortunately the cache type is not supported in Podman < 4.0 and Podman v4 not...
In the [sequence with broker docs](https://knative.dev/docs/eventing/flows/sequence/sequence-with-broker-trigger/), the following image is used to give an overview of the example sequence:  Anyhow in the examples later the trigger for...
At two places in the docs the api version `batch/v1beta1` was still used. For `CronJob`s this was deprecated in kubernetes 1.21 and unavailable since v1.25 (see [deprecation-guide CronJob v1.25](https://kubernetes.io/docs/reference/using-api/deprecation-guide/#cronjob-v125)). This...
PR fixes: * some markdown syntax in the RabbitMQ Broker doc, so the code example is displayed properly (048ba6d8ae5beff5a01f6fc3ec84d223eca3224c) * some broker spec indentation in the Broker configuration example (e9eb2d51d4a43f29d364ab419a2e13453884eebf)...
Fixes some wording in the Eventing [Getting started guide](https://knative.dev/docs/getting-started/first-trigger/#creating-your-first-trigger) ## Proposed Changes: `The expand the next note to see how to use Filters` -> `Expand the next note to see...
Currently we list only that OIDC is supported in eventing-core with the MTChannelBasedBroker and InMemoryChannel. Since we have OIDC support in eventing-kafka-broker (EKB) too, we can add a support matrix...
Currently the docs for the [Developer Configuration Options](https://knative.dev/docs/eventing/brokers/broker-developer-config-options/) of a Broker are only providing an example for a Broker object and some little description. It would be good, if this...
Currently the entrypoint of the image is always set to `/ko-app/`. This makes it hard to remote debug the app via Delve, which invokes the app e.g. via `dlv exec...
**Describe the bug** Currently it is possible to create SinkBindings with a non HTTPS sink, when `transport-encryption: strict`. **Expected behavior** When `transport-encryption: strict`, only HTTPS sinks should be allowed IMO.
Currently the TLS and OIDC e2e tests are mostly redundant and test the same (e.g. both have test to test the reply & DLS). Mostly the only difference is, that...