This is a cache of https://docs.openshift.com/container-platform/4.9/serverless/knative-serving/external-ingress-routing/https-redirect-per-service.html. It is a snapshot of the page at 2024-09-20T15:12:39.993+0000.
HTTPS redirection per <strong>service</strong> - Serving | Serverless | OpenShift Container Platform 4.9
×

You can enable or disable HTTPS redirection for a service by configuring the networking.knative.dev/http-option annotation.

Redirecting HTTPS for a service

The following example shows how you can use this annotation in a Knative service YAML object:

apiVersion: serving.knative.dev/v1
kind: service
metadata:
  name: example
  namespace: default
  annotations:
    networking.knative.dev/http-option: "redirected"
spec:
  ...