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