rename icon
parent
a18e27d807
commit
4f04427326
|
@ -337,7 +337,7 @@ func (k *Bootstrapper) WaitForNode(cfg config.ClusterConfig, n config.Node, time
|
|||
|
||||
// starting from minikube v1.10 checking for node pressure is a reuqired check
|
||||
out.T(out.HealthCheck, "Verifying Kubernetes Components:")
|
||||
out.T(out.OptionVerify, "verifying node conditions ...")
|
||||
out.T(out.IndentVerify, "verifying node conditions ...")
|
||||
|
||||
// TODO: #7706: for better performance we could use k.client inside minikube to avoid asking for external IP:PORT
|
||||
hostname, _, port, err := driver.ControlPaneEndpoint(&cfg, &n, cfg.Driver)
|
||||
|
@ -366,7 +366,7 @@ func (k *Bootstrapper) WaitForNode(cfg config.ClusterConfig, n config.Node, time
|
|||
}
|
||||
|
||||
if cfg.VerifyComponents[kverify.APIServerWaitKey] {
|
||||
out.T(out.OptionVerify, "verifying api server ...")
|
||||
out.T(out.IndentVerify, "verifying api server ...")
|
||||
client, err := k.client(hostname, port)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "get k8s client")
|
||||
|
@ -381,7 +381,7 @@ func (k *Bootstrapper) WaitForNode(cfg config.ClusterConfig, n config.Node, time
|
|||
}
|
||||
|
||||
if cfg.VerifyComponents[kverify.SystemPodsWaitKey] {
|
||||
out.T(out.OptionVerify, "verifying system pods ...")
|
||||
out.T(out.IndentVerify, "verifying system pods ...")
|
||||
client, err := k.client(hostname, port)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "get k8s client")
|
||||
|
@ -392,7 +392,7 @@ func (k *Bootstrapper) WaitForNode(cfg config.ClusterConfig, n config.Node, time
|
|||
}
|
||||
|
||||
if cfg.VerifyComponents[kverify.DefaultSAWaitKey] {
|
||||
out.T(out.OptionVerify, "verifying default service account ...")
|
||||
out.T(out.IndentVerify, "verifying default service account ...")
|
||||
client, err := k.client(hostname, port)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "get k8s client")
|
||||
|
@ -403,7 +403,7 @@ func (k *Bootstrapper) WaitForNode(cfg config.ClusterConfig, n config.Node, time
|
|||
}
|
||||
|
||||
if cfg.VerifyComponents[kverify.AppsRunningKey] {
|
||||
out.T(out.OptionVerify, "verifying apps running ...")
|
||||
out.T(out.IndentVerify, "verifying apps running ...")
|
||||
client, err := k.client(hostname, port)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "get k8s client")
|
||||
|
@ -414,7 +414,7 @@ func (k *Bootstrapper) WaitForNode(cfg config.ClusterConfig, n config.Node, time
|
|||
}
|
||||
|
||||
if cfg.VerifyComponents[kverify.NodeReadyKey] {
|
||||
out.T(out.OptionVerify, "verifying node ready")
|
||||
out.T(out.IndentVerify, "verifying node ready")
|
||||
client, err := k.client(hostname, port)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "get k8s client")
|
||||
|
|
|
@ -70,7 +70,7 @@ var styles = map[StyleEnum]style{
|
|||
ThumbsUp: {Prefix: "👍 "},
|
||||
ThumbsDown: {Prefix: "👎 "},
|
||||
Option: {Prefix: " ▪ ", LowPrefix: lowIndent}, // Indented bullet
|
||||
OptionVerify: {Prefix: " 🔎 ", LowPrefix: lowIndent}, // Indented verifying icon
|
||||
IndentVerify: {Prefix: " 🔎 ", LowPrefix: lowIndent}, // Indented verifying icon, it needs extra space to make it work
|
||||
Command: {Prefix: " ▪ ", LowPrefix: lowIndent}, // Indented bullet
|
||||
LogEntry: {Prefix: " "}, // Indent
|
||||
Deleted: {Prefix: "💀 "},
|
||||
|
|
|
@ -43,7 +43,7 @@ const (
|
|||
ThumbsUp
|
||||
ThumbsDown
|
||||
Option
|
||||
OptionVerify
|
||||
IndentVerify
|
||||
Command
|
||||
LogEntry
|
||||
Deleted
|
||||
|
|
|
@ -86,7 +86,7 @@ minikube start [flags]
|
|||
--uuid string Provide VM UUID to restore MAC address (hyperkit driver only)
|
||||
--vm Filter to use only VM Drivers
|
||||
--vm-driver driver DEPRECATED, use driver instead.
|
||||
--wait strings comma separated list of kubernetes components to verify and wait for after starting a cluster. defaults to "apiserver,system_pods", available options: "apiserver,system_pods,default_sa,apps_running" . other acceptable values are 'all' or 'none', 'true' and 'false' (default [apiserver,system_pods])
|
||||
--wait strings comma separated list of kubernetes components to verify and wait for after starting a cluster. defaults to "apiserver,system_pods", available options: "apiserver,system_pods,default_sa,apps_running,node_ready" . other acceptable values are 'all' or 'none', 'true' and 'false' (default [apiserver,system_pods])
|
||||
--wait-timeout duration max time to wait per Kubernetes core services to be healthy. (default 6m0s)
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue