chore: remove duplicate word in comments

Signed-off-by: Abirdcfly <fp544037857@gmail.com>
pull/14882/head
Abirdcfly 2022-08-30 14:14:38 +08:00
parent f00b5b1082
commit 8617c501b2
No known key found for this signature in database
GPG Key ID: A4EA876831B0458B
3 changed files with 3 additions and 3 deletions

View File

@ -409,7 +409,7 @@ out/unittest.json: $(SOURCE_FILES) $(GOTEST_FILES)
-coverprofile=out/coverage.out -json > out/unittest.json
out/coverage.out: out/unittest.json
# Generate go test report (from gotest) as a a HTML page
# Generate go test report (from gotest) as a HTML page
out/unittest.html: out/unittest.json
$(if $(quiet),@echo " REPORT $@")
$(Q)go-test-report < $< -o $@

View File

@ -43,7 +43,7 @@ const (
// vars related to the --wait flag
var (
// DefaultComponents is map of the the default components to wait for
// DefaultComponents is map of the default components to wait for
DefaultComponents = map[string]bool{APIServerWaitKey: true, SystemPodsWaitKey: true}
// NoWaitComponents is map of components to wait for if specified 'none' or 'false'
NoComponents = map[string]bool{APIServerWaitKey: false, SystemPodsWaitKey: false, DefaultSAWaitKey: false, AppsRunningKey: false, NodeReadyKey: false, KubeletKey: false, ExtraKey: false}

View File

@ -69,7 +69,7 @@ const (
ClusterDNSDomain = "cluster.local"
// DefaultServiceCIDR is The CIDR to be used for service cluster IPs
DefaultServiceCIDR = "10.96.0.0/12"
// HostAlias is a DNS alias to the the container/VM host IP
// HostAlias is a DNS alias to the container/VM host IP
HostAlias = "host.minikube.internal"
// ControlPlaneAlias is a DNS alias pointing to the apiserver frontend
ControlPlaneAlias = "control-plane.minikube.internal"