mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-05-28 04:04:39 -04:00
cleanup: improve darwin error messages
This commit is contained in:
parent
5f4adaf579
commit
b56c322f24
1 changed files with 2 additions and 2 deletions
|
|
@ -1467,7 +1467,7 @@ if [[ "${START_MODE}" != *"nokubelet"* ]]; then
|
|||
# Detect the OS name/arch and display appropriate error.
|
||||
case "$(uname -s)" in
|
||||
Darwin)
|
||||
print_color "kubelet is not currently supported in darwin, kubelet aborted."
|
||||
print_color "kubelet is not supported on macOS. Please use https://sigs.k8s.io/kind"
|
||||
KUBELET_LOG=""
|
||||
;;
|
||||
Linux)
|
||||
|
|
@ -1487,7 +1487,7 @@ if [[ "${START_MODE}" != "kubeletonly" ]]; then
|
|||
# Detect the OS name/arch and display appropriate error.
|
||||
case "$(uname -s)" in
|
||||
Darwin)
|
||||
print_color "kubelet is not currently supported in darwin, kube-proxy aborted."
|
||||
print_color "kube-proxy is not supported on macOS. Please use https://sigs.k8s.io/kind."
|
||||
;;
|
||||
Linux)
|
||||
start_kubeproxy
|
||||
|
|
|
|||
Loading…
Reference in a new issue