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