Merge pull request #16489 from cuiyourong/master

Fix function name in comment
This commit is contained in:
Kubernetes Prow Robot 2024-04-23 04:36:28 -07:00 committed by GitHub
commit 87a0483ca3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -135,7 +135,7 @@ func TestLifecycleComplex(t *testing.T) {
})
}
// TestLifecycleExternlLB runs the test on a cluster with external load balancers and target groups attached
// TestLifecycleExternalLB runs the test on a cluster with external load balancers and target groups attached
func TestLifecycleExternalLB(t *testing.T) {
runLifecycleTestAWS(&LifecycleTestOptions{
t: t,

View File

@ -343,7 +343,7 @@ func (b *ContainerdBuilder) skipInstall() bool {
return d.SkipInstall
}
// addCritctlConfig creates /etc/crictl.yaml, which lets crictl work out-of-the-box.
// addCrictlConfig creates /etc/crictl.yaml, which lets crictl work out-of-the-box.
func (b *ContainerdBuilder) addCrictlConfig(c *fi.NodeupModelBuilderContext) {
conf := `
runtime-endpoint: unix:///run/containerd/containerd.sock

View File

@ -518,7 +518,7 @@ func (b *KubeAPIServerBuilder) writeStaticCredentials(c *fi.NodeupModelBuilderCo
return nil
}
// allTokens returns a map of all auth tokens that are present
// allAuthTokens returns a map of all auth tokens that are present
func (b *KubeAPIServerBuilder) allAuthTokens() (map[string]string, error) {
possibleTokens := tokens.GetKubernetesAuthTokens_Deprecated()