示例#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;
 }