Fix some compilation warnings (#1010)

* Fixe some summary warning

* Fixed more warning

* Uniformed example projects code

* Uniformed test projects code

* Fix OperatingSystems enum and GenericType summaries
This commit is contained in:
Manuel Menegazzo
2022-09-16 01:21:21 +02:00
committed by GitHub
parent fd3931c994
commit f615b5b459
45 changed files with 210 additions and 154 deletions

View File

@@ -1,7 +1,7 @@
using System;
using System.Threading.Tasks;
using k8s;
using k8s.Models;
using System;
using System.Threading.Tasks;
namespace exec
{
@@ -18,7 +18,7 @@ namespace exec
await ExecInPod(client, pod).ConfigureAwait(false);
}
private async static Task ExecInPod(IKubernetes client, V1Pod pod)
private static async Task ExecInPod(IKubernetes client, V1Pod pod)
{
var webSocket =
await client.WebSocketNamespacedPodExecAsync(pod.Metadata.Name, "default", "ls",