mirror of https://github.com/kubernetes/kops.git
Merge pull request #15651 from justinsb/fix_incorrect_comment
Fix comment on patchNodePodCIDRs
This commit is contained in:
commit
da4b14bcca
|
@ -166,7 +166,7 @@ type nodePatchSpec struct {
|
|||
PodCIDRs []string `json:"podCIDRs,omitempty"`
|
||||
}
|
||||
|
||||
// patchNodeLabels patches the node labels to set the specified labels
|
||||
// patchNodePodCIDRs patches the node podCIDR to the specified value.
|
||||
func patchNodePodCIDRs(client *corev1client.CoreV1Client, ctx context.Context, node *corev1.Node, cidr string) error {
|
||||
klog.Infof("assigning cidr %q to node %q", cidr, node.ObjectMeta.Name)
|
||||
nodePatchSpec := &nodePatchSpec{
|
||||
|
|
Loading…
Reference in New Issue