Skip to content

Commit 33cb0ed

Browse files
authored
fix: typo (#99)
1 parent 134cc4d commit 33cb0ed

File tree

5 files changed

+31
-31
lines changed

5 files changed

+31
-31
lines changed

components/kubeadm/action.pb.go

Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/kubeadm/action.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ option go_package = "github.com/Azure/AKSFlexNode/components/kubeadm";
66

77
import "components/api/api.proto";
88

9-
message KubadmNodeJoin {
9+
message KubeadmNodeJoin {
1010
api.Metadata metadata = 1;
1111

1212
KubeadmNodeJoinSpec spec = 2;

components/kubeadm/redact.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package kubeadm
22

3-
func (x *KubadmNodeJoin) Redact() {
3+
func (x *KubeadmNodeJoin) Redact() {
44
}

components/kubeadm/v20260301/exports.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ import (
88
func init() {
99
actions.MustRegister(
1010
newNodeJoinAction,
11-
&kubeadm.KubadmNodeJoin{},
11+
&kubeadm.KubeadmNodeJoin{},
1212
)
1313
}

components/kubeadm/v20260301/join.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func (n *nodeJoinAction) ApplyAction(
4949
ctx context.Context,
5050
req *actions.ApplyActionRequest,
5151
) (*actions.ApplyActionResponse, error) {
52-
config, err := utilpb.AnyTo[*kubeadm.KubadmNodeJoin](req.GetItem())
52+
config, err := utilpb.AnyTo[*kubeadm.KubeadmNodeJoin](req.GetItem())
5353
if err != nil {
5454
return nil, err
5555
}

0 commit comments

Comments
 (0)