- remove annoations in nginxcontroller struct

This commit is contained in:
Taoge 2019-02-21 17:49:40 +08:00
parent 7534cd551a
commit 24993f359f
No known key found for this signature in database
GPG key ID: 5428EC9EB8A38AC8

View file

@ -49,7 +49,6 @@ import (
"k8s.io/ingress-nginx/internal/file"
"k8s.io/ingress-nginx/internal/ingress"
"k8s.io/ingress-nginx/internal/ingress/annotations"
"k8s.io/ingress-nginx/internal/ingress/annotations/class"
ngx_config "k8s.io/ingress-nginx/internal/ingress/controller/config"
"k8s.io/ingress-nginx/internal/ingress/controller/process"
@ -133,9 +132,6 @@ func NewNGINXController(config *Configuration, mc metric.Collector, fs file.File
config.DisableCatchAll)
n.syncQueue = task.NewTaskQueue(n.syncIngress)
n.annotations = annotations.NewAnnotationExtractor(n.store)
if config.UpdateStatus {
n.syncStatus = status.NewStatusSyncer(status.Config{
Client: config.Client,
@ -221,8 +217,6 @@ Error loading new template: %v
type NGINXController struct {
cfg *Configuration
annotations annotations.Extractor
recorder record.EventRecorder
syncQueue *task.Queue