Skip to content

Commit

Permalink
Kustomise nodejs regression (#195)
Browse files Browse the repository at this point in the history
fixes #194
  • Loading branch information
prom3theu5 authored May 14, 2024
1 parent 0a7212b commit 4ea3164
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ public KubernetesDeploymentData SetSecrets(Dictionary<string, string?> secrets)
return this;
}

public KubernetesDeploymentData SetAnnotations(Dictionary<string, string> annotations)
public KubernetesDeploymentData SetAnnotations(Dictionary<string, string>? annotations)
{
Annotations = annotations;
Annotations = annotations ?? [];
return this;
}

Expand Down

0 comments on commit 4ea3164

Please sign in to comment.