This is a cache of https://docs.openshift.com/serverless/1.33/knative-serving/http-configuration/http1-full-duplex-support.html. It is a snapshot of the page at 2024-09-27T16:33:19.894+0000.
Full duplex support for HTTP/1 - HTTP configuration | Serving | Red Hat OpenShift Serverless 1.33
×

You can enable the HTTP/1 full duplex support for a service by configuring the features.knative.dev/http-full-duplex annotation.

Verify your HTTP clients before enabling, as earlier version clients might not provide support for HTTP/1 full duplex.

The following example shows how you can use this annotation in a Knative service YAML object at the revision spec level:

Example KnativeServing CR that provides full duplex support for HTTP/1
apiVersion: serving.knative.dev/v1
kind: service
metadata:
  name: example-service
  namespace: default
spec:
  template:
    metadata:
      annotations:
        features.knative.dev/http-full-duplex: "Enabled"
...