예제 #1
0
 public GetReleasesHandler(IHelmClient helmClient, IKubernetesClient kubernetesClient)
 {
     this.helmClient       = helmClient ?? throw new ArgumentNullException(nameof(helmClient));
     this.kubernetesClient = kubernetesClient ?? throw new ArgumentNullException(nameof(kubernetesClient));
 }
예제 #2
0
 public DeleteReleaseHandler(
     IHelmClient helmClient)
 {
     this.helmClient = helmClient ?? throw new ArgumentNullException(nameof(helmClient));
 }
예제 #3
0
 public GetReleaseDetailsHandler(
     IHelmClient helmClient)
 {
     this.helmClient = helmClient ?? throw new ArgumentNullException(nameof(helmClient));
 }
예제 #4
0
 public GetChartsHandler(IHelmClient helmClient)
 {
     this.helmClient = helmClient ?? throw new ArgumentNullException(nameof(helmClient));
 }