Пример #1
0
 public WatchdogStatusPutter(KubernetesClient client, IClock clock)
 {
     this.client = client;
     this.clock  = clock;
 }
Пример #2
0
 public DataRepositoryKnownGoodAccessor(ILoggerFactory loggerFactory, KubernetesClient client)
 {
     this.logger = loggerFactory.CreateLogger <DataRepositoryKnownGoodAccessor>();
     this.client = client;
 }
Пример #3
0
 public WatchdogStatusGetter(KubernetesClient client)
 {
     this.client = client;
 }
Пример #4
0
 public PodAnnotationPutter(KubernetesClient client, IOptions <PodIdentifierOptions> thisPodOptions)
 {
     this.client         = client;
     this.thisPodOptions = thisPodOptions;
 }
Пример #5
0
 public PodEvicter(KubernetesClient client)
 {
     this.client = client;
 }
Пример #6
0
 public PodDataRequestGetter(KubernetesClient client)
 {
     this.client = client;
 }