Data 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 args section:

args: - /nginx-ingress-controller - '--configmap=$(POD_NAMESPACE)/tectonic-custom-error' - '--default-backend-service=$(POD_NAMESPACE)/default-http-backend' - '--default-ssl-certificate=tectonic-system/tectonic-ingress-tls-secret' - '--ingress-class=tectonic'

Append your tcp-services-configmap or tcp-services-configmap arguments giving them a config map path.

For example, a value for each argument for a config map with the same name in the default namespace:

args: - /nginx-ingress-controller - '--configmap=$(POD_NAMESPACE)/tectonic-custom-error' - '--tcp-services-configmap=default/tcp-services-configmap' - '--udp-services-configmap=default/udp-services-configmap' - '--default-backend-service=$(POD_NAMESPACE)/default-http-backend' - '--default-ssl-certificate=tectonic-system/tectonic-ingress-tls-secret' - '--ingress-class=tectonic'