public PodServiceReconcilingWorker(IPodServicesContainer podServicesContainer,
                                    IPodsEventStream podsEventStream,
                                    IServiceAnnotationMapper serviceAnnotationMapper,
                                    IConsulServiceClient consulClient,
                                    LegateConfiguration configuration)
 {
     _podServicesContainer    = podServicesContainer;
     _podsEventStream         = podsEventStream;
     _serviceAnnotationMapper = serviceAnnotationMapper;
     _consulClient            = consulClient;
     _configuration           = configuration;
 }
Пример #2
0
 public PodWatchingWorker(IKubernetes client, IPodsEventStream podsEventStream)
 {
     _client          = client;
     _podsEventStream = podsEventStream;
 }