An existing nginx ingress named nginx-proxy running on the K8 cluster.
Now, there is a requirement from the Dev team to disable TLS 1.0, 1.1 support.
Upon searching, I could see this solution using configmap.
Do you think applying/creating a new configmap as follows to an existing nginx ingress helps me to resolve the issue?
kind: ConfigMap
apiVersion: v1
metadata:
name: nginx-proxy
data:
ssl-protocols: "TLSv1.2 TLSv1.3"
Adding a new configmap like that to an existing nginx ingress breaks anything?. Because this is for the production website.
A piece of advice would be really helpful.