Select all that apply
What is the correct sequence of steps to disable TLS in Event Manager?
To disable Transport Layer Security (TLS) encryption, edit the proxy configmap.
Open the proxy configmap for editing.
Procedurekubectl edit configmap release_name-proxy-config -n namespace
Where
release_name is the name of the custom resource for your deployment.
namespace is the name of the namespace in which Netcool® Operations Insight® on Red Hat® OpenShift® is deployed.
Find the tlsEnabled flag and set it to false. Save and exit the configmap.
tlsEnabled: "false"
Find the proxy pod using the command
kubectl get pods --namespace namespace | grep proxy
Where namespace is the name of the namespace in whichNetcool Operations Insight on Red Hat OpenShift is deployed.
Restart the proxy pod.
kubectl delete pod proxy-pod -n namespace
proxy-pod is the name of the proxy pod in your Netcool Operations Insight on Red Hat OpenShift deployment.
namespace is the name of the namespace in which Netcool Operations Insight on Red Hat OpenShift is deployed.
https://www.ibm.com/docs/en/noi/1.6.4?topic=service-disabling-tls-encryption
Submit