File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
workerServiceDependencyInjection Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -8,10 +8,11 @@ public class Worker : BackgroundService
8
8
private readonly IKubernetes kubernetesClient ;
9
9
10
10
/// <summary>
11
+ /// Initializes a new instance of the <see cref="Worker"/> class.
11
12
/// Inject in the constructor the IKubernetes interface.
12
13
/// </summary>
13
- /// <param name="logger"></param>
14
- /// <param name="kubernetesClient"></param>
14
+ /// <param name="logger">The logger instance used for logging information. </param>
15
+ /// <param name="kubernetesClient">The Kubernetes client used to interact with the Kubernetes API. </param>
15
16
public Worker ( ILogger < Worker > logger , IKubernetes kubernetesClient )
16
17
{
17
18
this . logger = logger ;
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ internal class Program
10
10
{
11
11
private static async Task Main ( string [ ] args )
12
12
{
13
- var typeMap = new Dictionary < String , Type >
13
+ var typeMap = new Dictionary < string , Type >
14
14
{
15
15
{ "v1/Pod" , typeof ( V1Pod ) } ,
16
16
{ "v1/Service" , typeof ( V1Service ) } ,
You can’t perform that action at this time.
0 commit comments