kind create cluster --help
Creates a local Kubernetes cluster using Docker container 'nodes'

Usage:
  kind create cluster [flags]

Flags:
      --config string       path to a kind config file
  -h, --help                help for cluster
      --image string        node docker image to use for booting the cluster
      --kubeconfig string   sets kubeconfig path instead of $KUBECONFIG or $HOME/.kube/config
      --name string         cluster context name (default "kind")
      --network string      docker image to add the nodes to
      --retain              retain nodes for debugging when cluster creation fails
      --wait duration       Wait for control plane node to be ready (default 0s)

Global Flags:
      --loglevel string   DEPRECATED: see -v instead
  -q, --quiet             silence all stderr output
  -v, --verbosity int32   info log verbosity
--network选项有什么作用?我无法在同类网站上找到任何文档,并且我对docker的当前理解不允许我解析其描述。
如何将节点添加到图像?那有什么意思?这与docker network没有任何关系吗?

最佳答案

我确实确实只是将所有节点添加到指定的docker网络。我可能使用的是旧版本,无法访问。

关于docker - `kind create cluster`的--network选项有什么作用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/63148244/

10-12 23:49