Configuring custom domains
- beta features are well-tested and enabling them is considered safe. Support for the overall feature will not be dropped, though details may change in incompatible ways.
Each Knative Service is automatically assigned a default domain name when it is created. However, you can map any custom domain name that you own to a Knative Service, by using domain mapping.
You can create a object to map a single, non-wildcard domain to a specific Knative Service.
For example, if you own the domain name example.org
, and you configure the domain DNS to reference your Knative cluster, you can use DomainMapping to serve a Knative Service at this domain.
Note
If you create a domain mapping to map to a private Knative Service, the private Knative Service is accessible from public internet with the custom domain of the domain mapping.
- You must have access to a Kubernetes cluster, with Knative Serving and an Ingress implementation installed. For more information, see the .
- You must have the domain mapping feature enabled on your cluster.
- You must have access to a Knative service that you can map a domain to.
- You must own or have access to a domain name to map, and be able to change the domain DNS to point to your Knative cluster by using the tools provided by your domain registrar.
Procedure
To create a DomainMapping, you must first have a ClusterDomainClaim. This ClusterDomainClaim delegates the domain name to the namespace you want to create the DomainMapping in, which enables DomainMappings in that namespace to use the domain name.
Create a ClusterDomainClaim manually or configure automatic creation of ClusterDomainClaims:
To create ClusterDomainClaims automatically: set the
autocreateClusterDomainClaims
property totrue
in theconfig-network
ConfigMap in theknative-serving
namespace. This allows any user, in any namespace, to map any domain name, including ones in other namespaces or for domain names that they do not own.
Create a DomainMapping object:
YAML
Create a YAML file using the following template:
Where:
<domain-name>
is the domain name that you want to map a Service to.<namespace>
is the namespace that contains both theDomainMapping
andService
objects.- is the name of the Service that is mapped to the domain.
Tip
Apply the YAML file by running the command:
Where
<filename>
is the name of the file you created in the previous step.
kn
Run the command:
Where:
<domain-name>
is the domain name that you want to map a Service or Route to.<target>
is the name of the Service or Route that is mapped to the domain. You can use the prefixksvc:
or to specify whether to map the domain to a Knative Service or Route. If no prefix is given,ksvc:
is assumed. Additionally, you can use a:namespace
suffix to point to a Service or Route in a different namespace. Examples:mysvc
maps to a Servicemysvc
in the same namespace as this mapping.kroute:myroute:othernamespace
maps to a Routemyroute
in namespaceothernamespace
.
<tls-secret>
is optional and if provided enables the TLS protocol. The value specifies the secret that holds the server certificate.<namespace>
is the namespace where you want to create the DomainMapping. By default the DomainMapping is created in the current namespace.
Note
In addition to creating DomainMappings, you can use the
kn domain
command to list, describe, update, and delete existing DomainMappings. For more information about the command, run .Point the domain name to the IP address of your Knative cluster. Details of this step differ depending on your domain registrar.