We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88212fb commit 9f4ef81Copy full SHA for 9f4ef81
bootstrap/eks/api/v1beta2/nodeadmconfigtemplate_type.go
@@ -27,6 +27,11 @@ type NodeadmConfigTemplateSpec struct {
27
28
// NodeadmConfigTemplateResource defines the Template structure.
29
type NodeadmConfigTemplateResource struct {
30
+ // Spec represents the NodeadmConfig each object created from the template will become.
31
+ // We are setting nullable to avoid this issue:
32
+ // https://github.com/kubernetes/kubernetes/issues/117447#issuecomment-2127733969
33
+ // where we cannot remove all fields with an SSA patch if they were previously set.
34
+ // +nullable
35
Spec NodeadmConfigSpec `json:"spec,omitempty"`
36
}
37
0 commit comments