kind的使用
一、安装 kind
$ curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/v0.5.1/kind-linux-amd64$ chmod +x ./kind
$ mv ./kind /usr/local/bin/kind
二、kind 使用
$ kindkind creates and manages local Kubernetes clusters using Docker container "nodes"
Usage:
kind [command]
Available Commands:
build Build one of [base-image, node-image]
completion Output shell completion code for the specified shell (bash or zsh)
create Creates one of [cluster]
delete Deletes one of [cluster]
export exports one of
[logs]
get Gets one of [clusters, nodes, kubeconfig, kubeconfig-path]
help Help about any command
load Loads images into nodes
version prints the kind CLI version
Flags:
-h, --help help for kind
--loglevel string logrus log level [panic, fatal, error, warning, info, debug, trace] (default "warning")
--version version for kind
Use "kind [command] --help" for more information about a command.
以上是 kind的使用 的全部内容, 来源链接: utcz.com/z/512529.html