HTTP ports in ingress-nginx

Under [ 📁Workloads ], select:

> Daemon sets

From the [ Namespace: ] dropdown, select:

tectonic-system

In the [ Daemon Sets ] list, locate and select:

⚙(DS) tectonic-ingress-controller

Select the [ YAML ] tab and locate the ports section:

ports: - name: http hostPort: 80 containerPort: 80 protocol: TCP - name: https hostPort: 443 containerPort: 443 protocol: TCP

Append your port descriptions giving them a name, the port number and the protocol to be used.

For example, appending HTTP Alternate port descriptions for HTTP services:

ports: - name: http hostPort: 80 containerPort: 80 protocol: TCP - name: https hostPort: 443 containerPort: 443 protocol: TCP - name: http-alt hostPort: 8080 containerPort: 8080 protocol: TCP