From 8557677a5ee5d396df7ad73e741b837eec9b03d7 Mon Sep 17 00:00:00 2001 From: Mitsuo Heijo Date: Mon, 6 Jul 2020 23:18:42 +0900 Subject: [PATCH] fix json tag for SSLPreferServerCiphers related https://github.com/kubernetes/ingress-nginx/pull/5534 --- internal/ingress/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ingress/types.go b/internal/ingress/types.go index e082f0d62..c922f2cc3 100644 --- a/internal/ingress/types.go +++ b/internal/ingress/types.go @@ -202,7 +202,7 @@ type Server struct { SSLCiphers string `json:"sslCiphers,omitempty"` // SSLPreferServerCiphers indicates that server ciphers should be preferred // over client ciphers when using the SSLv3 and TLS protocols. - SSLPreferServerCiphers string `sslPreferServerCiphers,omitempty` + SSLPreferServerCiphers string `json:"sslPreferServerCiphers,omitempty"` // AuthTLSError contains the reason why the access to a server should be denied AuthTLSError string `json:"authTLSError,omitempty"` }