mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
24 lines
735 B
Plaintext
24 lines
735 B
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * serverless/admin_guide/serverless-configuration.adoc
|
|
|
|
:_content-type: REFERENCE
|
|
[id="serverless-https-redirect-global_{context}"]
|
|
= HTTPS redirection global settings
|
|
|
|
HTTPS redirection provides redirection for incoming HTTP requests. These redirected HTTP requests are encrypted. You can enable HTTPS redirection for all services on the cluster by configuring the `httpProtocol` spec for the `KnativeServing` custom resource (CR).
|
|
|
|
.Example `KnativeServing` CR that enables HTTPS redirection
|
|
[source,yaml]
|
|
----
|
|
apiVersion: operator.knative.dev/v1alpha1
|
|
kind: KnativeServing
|
|
metadata:
|
|
name: knative-serving
|
|
spec:
|
|
config:
|
|
network:
|
|
httpProtocol: "redirected"
|
|
...
|
|
----
|