Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo:evaluator #42132

Merged
merged 2 commits into from
Feb 27, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/quota/evaluator/core/persistent_volume_claims.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func (p *pvcEvaluator) GroupKind() schema.GroupKind {
return api.Kind("PersistentVolumeClaim")
}

// Handles returns true if the evalutor should handle the specified operation.
// Handles returns true if the evaluator should handle the specified operation.
func (p *pvcEvaluator) Handles(operation admission.Operation) bool {
return admission.Create == operation
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/quota/evaluator/core/pods.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func (p *podEvaluator) GroupKind() schema.GroupKind {
return api.Kind("Pod")
}

// Handles returns true of the evalutor should handle the specified operation.
// Handles returns true of the evaluator should handle the specified operation.
func (p *podEvaluator) Handles(operation admission.Operation) bool {
// TODO: update this if/when pods support resizing resource requirements.
return admission.Create == operation
Expand Down
2 changes: 1 addition & 1 deletion pkg/quota/evaluator/core/services.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func (p *serviceEvaluator) GroupKind() schema.GroupKind {
return api.Kind("Service")
}

// Handles returns true of the evalutor should handle the specified operation.
// Handles returns true of the evaluator should handle the specified operation.
func (p *serviceEvaluator) Handles(operation admission.Operation) bool {
// We handle create and update because a service type can change.
return admission.Create == operation || admission.Update == operation
Expand Down
2 changes: 1 addition & 1 deletion test/e2e_node/conformance/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ start_kubelet() {
fi
}

# wait_kubelet retris for 10 times for kubelet to be ready by checking http://127.0.0.1:10255/healthz.
# wait_kubelet retries for 10 times for kubelet to be ready by checking http://127.0.0.1:10255/healthz.
wait_kubelet() {
echo "Health checking kubelet..."
healthCheckURL=http://127.0.0.1:10255/healthz
Expand Down