copyright | lastupdated | keywords | subcollection | ||
---|---|---|---|---|---|
|
2023-01-30 |
openshift, lb2.0, nlb |
openshift |
{{site.data.keyword.attribute-definition-list}}
{: #loadbalancer_hostname}
This content is specific to NLBs in classic clusters. For VPC clusters, see Registering a VPC load balancer hostname with a DNS subdomain. {: note}
After you set up network load balancers (NLBs), you can create DNS entries for the NLB IPs by creating subdomains. You can also set up TCP/HTTP(S) monitors to health check the NLB IP addresses behind each subdomain. {: shortdesc}
Subdomain
: When you create a public NLB in a single-zone or multizone cluster, you can expose your app to the internet by creating a subdomain for the NLB IP address. Additionally, {{site.data.keyword.cloud_notm}} takes care of generating and maintaining the wildcard SSL certificate for the subdomain for you. In multizone clusters, you can create a subdomain and add the NLB IP address in each zone to that subdomain DNS entry. For example, if you deployed NLBs for your app in three zones in US-South, you can create the subdomain mycluster-a1b2cdef345678g9hi012j3kl4567890-0001.us-south.containers.appdomain.cloud
for the three NLB IP addresses. When a user accesses your app subdomain, the client accesses one of these IPs at random, and the request is sent to that NLB.
You currently can't create subdomains for private NLBs. {: note}
Health check monitor
: Enable health checks on the NLB IP addresses behind a single subdomain to determine whether they are available or not. When you enable a monitor for your subdomain, the monitor health checks each NLB IP and keeps the DNS lookup results updated based on these health checks. For example, if your NLBs have IP addresses 1.1.1.1
, 2.2.2.2
, and 3.3.3.3
, a normal operation DNS lookup of your subdomain returns all 3 IPs, 1 of which the client accesses at random. If the NLB with IP address 3.3.3.3
becomes unavailable for any reason, such as due to zone failure, then the health check for that IP fails, the monitor removes the failed IP from the subdomain, and the DNS lookup returns only the healthy 1.1.1.1
and 2.2.2.2
IPs.
You can see all subdomains that are registered for NLB IPs in your cluster by running the following command.
ibmcloud oc nlb-dns ls --cluster <cluster_name_or_id>
{: pre}
DNS microservice updates are asynchronous and might take several minutes to apply. Note that if you run an ibmcloud oc nlb-dns
command and receive a 200 confirmation message, you might still have to wait for your changes to be implemented. To check the status of your subdomain, run ibmcloud oc nlb-dns ls
and find the Status
column in the output.
{: tip}
{: #loadbalancer_hostname_dns}
Expose your app to the public internet by creating a subdomain for the network load balancer (NLB) IP address. {: shortdesc}
Before you begin:
- Review the following limitations.
- You can't create subdomains for private NLBs.
- You can register up to 128 subdomains. This limit can be lifted on request by opening a support case.
- Create an NLB for your app in a single-zone cluster or create NLBs in each zone of a multizone cluster.
To create a subdomain for one or more NLB IP addresses:
-
Get the EXTERNAL-IP address for your NLB. If you have NLBs in each zone of a multizone cluster that expose one app, get the IPs for each NLB.
oc get svc
{: pre}
In the following example output, the NLB EXTERNAL-IPs are
168.2.4.5
and88.2.4.5
.NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE lb-myapp-dal10 LoadBalancer 172.21.xxx.xxx 168.2.4.5 1883:30303/TCP 6d lb-myapp-dal12 LoadBalancer 172.21.xxx.xxx 88.2.4.5 1883:31303/TCP 6d
{: screen}
-
Register the IP by creating a DNS subdomain. To specify multiple IP addresses, use multiple
--ip
options.ibmcloud oc nlb-dns create classic --cluster <cluster_name_or_id> --ip <NLB_IP> --ip <NLB2_IP>
{: pre}
-
Verify that the subdomain is created.
ibmcloud oc nlb-dns ls --cluster <cluster_name_or_id>
{: pre}
Example output
Hostname IP(s) Health Monitor SSL Cert Status SSL Cert Secret Name mycluster-a1b2cdef345678g9hi012j3kl4567890-0001.us-south.containers.appdomain.cloud ["168.2.4.5"] None created <certificate>
{: screen}
-
Optional: Set up a custom domain to point to the IBM-provided subdomain that you created in the previous step.
- Register a custom domain by working with your Domain Name Service (DNS) provider or by using {{site.data.keyword.cloud_notm}} DNS.
- Define an alias for your custom domain by specifying the IBM-provided subdomain as a Canonical Name record (CNAME).
-
In a web browser, enter the URL to access your app through the subdomain that you created.
Next, you can enable health checks on the subdomain by creating a health monitor.
{: #loadbalancer_hostname_format}
Subdomains for NLBs follow the format <cluster_name>-<globally_unique_account_HASH>-0001.<region>.containers.appdomain.cloud
.
{: shortdesc}
For example, a subdomain that you create for an NLB might look like mycluster-a1b2cdef345678g9hi012j3kl4567890-0001.us-south.containers.appdomain.cloud
. The following table describes each component of the subdomain.
NLB subdomain component | Description |
---|---|
* |
The wildcard for the subdomain is registered by default for your cluster. |
<cluster_name> |
The name of your cluster. - If the cluster name is 26 characters or fewer and the cluster name is unique in this region, the entire cluster name is included and is not modified: myclustername . \n - If the cluster name is 26 characters or fewer and there is an existing cluster of the same name in this region, the entire cluster name is included and a dash with six random characters is added: myclustername-ABC123 . \n - If the cluster name is 26 characters or greater and the cluster name is unique in this region, only the first 24 characters of the cluster name are used: myveryverylongclusternam . \n - If the cluster name is 26 characters or greater and there is an existing cluster of the same name in this region, only the first 17 characters of the cluster name are used and a dash with six random characters is added: myveryverylongclu-ABC123 . |
<globally_unique_account_HASH> |
A globally unique HASH is created for your {{site.data.keyword.cloud_notm}} account. All subdomains that you create for NLBs in clusters in your account use this globally unique HASH. |
0001 |
The first and second characters indicate a public or a private (internal) subdomain. - 00 indicates a subdomain that has a public DNS entry. \n - i0 indicates a subdomain that has a private DNS entry. \n - The first and second characters, 00 , indicate a public subdomain. \n - The third and fourth characters, such as 01 or another number, act as a counter for each subdomain that you create. |
<region> |
The region that the cluster is created in. |
containers.appdomain.cloud |
The subdomain for {{site.data.keyword.openshiftlong_notm}} subdomains. |
{: caption="Table 1. Understanding the NLB subdomain format" caption-side="bottom"} |
{: #loadbalancer_hostname_monitor}
Enable health checks on the NLB IP addresses behind a single subdomain to determine whether they are available or not. {: shortdesc}
Before you begin, register NLB IPs with a DNS subdomain.
-
Get the name of your subdomain. In the output, note that the host has a monitor Status of
Unconfigured
.ibmcloud oc nlb-dns monitor ls --cluster <cluster_name_or_id>
{: pre}
Example output
Hostname Status Type Port Path mycluster-a1b2cdef345678g9hi012j3kl4567890-0001.us-south.containers.appdomain.cloud Unconfigured N/A 0 N/A
{: screen}
-
Create a health check monitor for the subdomain. If you don't include a configuration parameter, the default value is used.
ibmcloud oc nlb-dns monitor configure --cluster <cluster_name_or_id> --nlb-host <host_name> --enable --description <description> --type <type> --method <method> --path <path> --timeout <timeout> --retries <retries> --interval <interval> --port <port> --header <header> --expected-body <expected-body> --expected-codes <expected-codes> --follows-redirects <true> --allows-insecure <true>
{: pre}
-c, --cluster <cluster_name_or_ID>
: Required: The name or ID of the cluster where the subdomain is registered.--nlb-host <host_name>
: Required: The subdomain to enable a health check monitor for.--enable
: Required: Enable the health check monitor for the subdomain.--description <description>
: A description of the health monitor.--type <type>
: The protocol to use for the health check:HTTP
,HTTPS
, orTCP
. Default:HTTP
.--method <method>
: The method to use for the health check. Default fortype
HTTP
andHTTPS
:GET
. Default fortype
TCP
:connection_established
--path <path>
: Whentype
isHTTPS
: The endpoint path to health check against. Default:/
--timeout <timeout>
: The timeout, in seconds, before the IP is considered unhealthy. Default:5
.--retries <retries>
: When a timeout occurs, the number of retries to attempt before the IP is considered unhealthy. Retries are attempted immediately. Default:2
.--interval <interval>
: The interval, in seconds, between each health check. Short intervals might improve failover time, but increase load on the IPs. Default:60
.--port <port>
: The port number to connect to for the health check. Whentype
isTCP
, this parameter is required. Whentype
isHTTP
orHTTPS
, define the port only if you use a port other than 80 for HTTP or 443 for HTTPS. Default for TCP:0
. Default for HTTP:80
. Default for HTTPS:443
.--header <header>
: Whentype
isHTTP
orHTTPS
: The HTTP request headers to send in the health check, such as a Host header. The User-Agent header can't be overridden. To add more than one header to the requests, specify this option multiple times. This option accepts values in the following format:--header Header-Name=value
. When updating a monitor, the existing headers are replaced by the ones that you specify. To delete all existing headers, specify the option with an empty value (--header ""
).--expected-body <expected-body>
: Whentype
isHTTP
orHTTPS
: A case-insensitive substring that the health check looks for in the response body. If this string is not found, the IP is considered unhealthy.--expected-codes <expected-codes>
: Whentype
isHTTP
orHTTPS
: HTTP codes that the health check looks for in the response. If the HTTP code is not found, the IP is considered unhealthy. Default:2xx
.--allows-insecure <true>
: Whentype
isHTTP
orHTTPS
: Set totrue
to not validate the certificate.--follows-redirects <true>
: Whentype
isHTTP
orHTTPS
: Set totrue
to follow any redirects that are returned by the IP.Example command
ibmcloud oc nlb-dns monitor configure --cluster mycluster --nlb-host mycluster-a1b2cdef345678g9hi012j3kl4567890-0001.us-south.containers.appdomain.cloud --enable --description "Login page monitor" --type HTTPS --method GET --path / --timeout 5 --retries 2 --interval 60 --header Host=example.com --header Origin=https://akamai.com --expected-body "healthy" --expected-codes 2xx --follows-redirects true
{: pre}
-
Verify that the health check monitor is configured with the correct settings.
ibmcloud oc nlb-dns monitor get --cluster <cluster_name_or_id> --nlb-host <host_name>
{: pre}
Example output
Created On: 2019-04-24 09:01:59.781392 +0000 UTC Modified On: 2020-02-26 15:39:05.273217 +0000 UTC Type: https Description: Health check monitor for ingress public hostname Method: GET Path: /alive Expected Body: - Expected Codes: 2xx Follow Redirects: false Allow Insecure: true Port: 443 Timeout: 5 Retries: 2 Interval: 15 Headers: Origin: https://akamai.com Host: example.com Health Monitor Apply Properties Status: success
{: screen}
-
View the health check status of your subdomain.
ibmcloud oc nlb-dns monitor ls --cluster <cluster_name_or_id>
{: pre}
Example output
Hostname Status Type Port Path mycluster-a1b2cdef345678g9hi012j3kl4567890-0001.us-south.containers.appdomain.cloud Healthy https 443 /alive
{: screen}
{: #loadbalancer_hostname_delete}
You can add and remove NLB IP addresses from subdomains that you have generated. You can also disable and enable health check monitors for subdomains as needed. {: shortdesc}
{: #nlb-ips-remove-sd}
If you later add more NLBs in other zones of your cluster to expose the same app, you can add the NLB IPs to the existing subdomain.
ibmcloud oc nlb-dns add --cluster <cluster_name_or_id> --ip <NLB_IP> --ip <NLB2_IP> ... --nlb-host <host_name>
{: pre}
You can also remove IP addresses of NLBs that you no longer want to be registered with a subdomain. Note that you must run the following command for each IP address that you want to remove. If you remove all IPs from a subdomain, the subdomain still exists but no IPs are associated with it.
ibmcloud oc nlb-dns rm classic --cluster <cluster_name_or_id> --ip <ip> --nlb-host <host_name>
{: pre}
{: #health-check-config-mon}
If you need to change your health monitor configuration, you can change specific settings. Include only the options for the settings that you want to change.
ibmcloud oc nlb-dns monitor configure --cluster <cluster_name_or_id> --nlb-host <host_name> --description <description> --type <type> --method <method> --path <path> --timeout <timeout> --retries <retries> --interval <interval> --port <port> --header <header> --expected-body <expected-body> --expected-codes <expected-codes> --follows-redirects <true> --allows-insecure <true>
{: pre}
You can disable the health check monitor for a subdomain at any time by running the following command:
ibmcloud oc nlb-dns monitor disable --cluster <cluster_name_or_id> --nlb-host <host_name>
{: pre}
To re-enable a monitor for a subdomain, run the following command:
ibmcloud oc nlb-dns monitor enable --cluster <cluster_name_or_id> --nlb-host <host_name>
{: pre}