This commit is contained in:
Daniel Martins 2017-08-31 15:13:23 +00:00 committed by GitHub
commit 0ca2754eaf
2 changed files with 1 additions and 2 deletions

View file

@ -372,7 +372,7 @@ func (n *NGINXController) OverrideFlags(flags *pflag.FlagSet) {
}
flags.Set("ingress-class", ic)
n.stats = newStatsCollector(wc, ic, n.binary, n.ports.Health)
n.stats = newStatsCollector(wc, ic, n.binary, n.ports.Status)
if n.isSSLPassthroughEnabled {
if !isPortAvailable(n.ports.SSLProxy) {

View file

@ -475,7 +475,6 @@ type ListenPorts struct {
HTTP int
HTTPS int
Status int
Health int
Default int
SSLProxy int
}