mirror of https://github.com/kubernetes/kops.git
Merge pull request #16489 from cuiyourong/master
Fix function name in comment
This commit is contained in:
commit
87a0483ca3
|
@ -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) {
|
func TestLifecycleExternalLB(t *testing.T) {
|
||||||
runLifecycleTestAWS(&LifecycleTestOptions{
|
runLifecycleTestAWS(&LifecycleTestOptions{
|
||||||
t: t,
|
t: t,
|
||||||
|
|
|
@ -343,7 +343,7 @@ func (b *ContainerdBuilder) skipInstall() bool {
|
||||||
return d.SkipInstall
|
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) {
|
func (b *ContainerdBuilder) addCrictlConfig(c *fi.NodeupModelBuilderContext) {
|
||||||
conf := `
|
conf := `
|
||||||
runtime-endpoint: unix:///run/containerd/containerd.sock
|
runtime-endpoint: unix:///run/containerd/containerd.sock
|
||||||
|
|
|
@ -518,7 +518,7 @@ func (b *KubeAPIServerBuilder) writeStaticCredentials(c *fi.NodeupModelBuilderCo
|
||||||
return nil
|
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) {
|
func (b *KubeAPIServerBuilder) allAuthTokens() (map[string]string, error) {
|
||||||
possibleTokens := tokens.GetKubernetesAuthTokens_Deprecated()
|
possibleTokens := tokens.GetKubernetesAuthTokens_Deprecated()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue