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