Skip to content
This repository has been archived by the owner on Sep 24, 2021. It is now read-only.

Commit

Permalink
Merge pull request #71 from chuckha/typo
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
k8s-ci-robot authored Jul 8, 2019
2 parents 0695a88 + 1693ba1 commit 1f59add
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kind/actions/cluster_actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"strings"

"github.com/pkg/errors"
k8sverison "k8s.io/apimachinery/pkg/util/version"
k8sversion "k8s.io/apimachinery/pkg/util/version"
"sigs.k8s.io/cluster-api-provider-docker/kind/kubeadm"
"sigs.k8s.io/cluster-api-provider-docker/third_party/forked/loadbalancer"
"sigs.k8s.io/kind/pkg/cluster/constants"
Expand Down Expand Up @@ -152,7 +152,7 @@ func KubeadmInit(clusterName, version string) error {
}
// Upload certs flag changed to non-experimental in >= 1.15
uploadCertsFlag := "--experimental-upload-certs"
parsedVersion, err := k8sverison.ParseGeneric(version)
parsedVersion, err := k8sversion.ParseGeneric(version)
if err != nil {
return errors.WithStack(err)
}
Expand Down

0 comments on commit 1f59add

Please sign in to comment.