Setting up node ports
The IBM TRIRIGA Application Suite operator exposes only the SMTP server using a node port service named TAS instance name-smtp-service.
The used port is randomly selected from the default node port range of the cluster. The assigned port can be read by inspecting the service TAS instance name-smtp-service.
If you need to create a load balance service and the target infrastructure supports it, you can
create one as in the following example:
cat <<EOF |oc apply -f -
apiVersion: v1
kind: Service
metadata:
name: smtp-external
namespace: <your namespace>
spec:
ports:
- name: smtp-port
port: <open-port>
targetPort: 1025
loadBalancerIP:
loadBalancerSourceRanges:
type: LoadBalancer
selector:
tas.ibm.com/smtp: <TAS-instance-name>
EOF
Ports
TRIRIGA Application Suite does not expose any ports other than secure SMTP port 587 and 443 for HTTPS to access IBM TRIRIGA.