kubectl run
概要
在 Pod 中创建并运行特定镜像。
kubectl run NAME --image=image [--env="key=value"] [--port=port] [--dry-run=server|client] [--overrides=inline-json] [--command] -- [COMMAND] [args...]
示例
# Start a nginx pod
kubectl run nginx --image=nginx
# Start a hazelcast pod and let the container expose port 5701
kubectl run hazelcast --image=hazelcast/hazelcast --port=5701
# Start a hazelcast pod and set environment variables "DNS_DOMAIN=cluster" and "POD_NAMESPACE=default" in the container
kubectl run hazelcast --image=hazelcast/hazelcast --env="DNS_DOMAIN=cluster" --env="POD_NAMESPACE=default"
# Start a hazelcast pod and set labels "app=hazelcast" and "env=prod" in the container
kubectl run hazelcast --image=hazelcast/hazelcast --labels="app=hazelcast,env=prod"
# Dry run; print the corresponding API objects without creating them
kubectl run nginx --image=nginx --dry-run=client
# Start a nginx pod, but overload the spec with a partial set of values parsed from JSON
kubectl run nginx --image=nginx --overrides='{ "apiVersion": "v1", "spec": { ... } }'
# Start a busybox pod and keep it in the foreground, don't restart it if it exits
kubectl run -i -t busybox --image=busybox --restart=Never
# Start the nginx pod using the default command, but use custom arguments (arg1 .. argN) for that command
kubectl run nginx --image=nginx -- <arg1> <arg2> ... <argN>
# Start the nginx pod using a different command and custom arguments
kubectl run nginx --image=nginx --command -- <cmd> <arg1> ... <argN>
选项
--allow-missing-template-keys 默认值: true | |
如果为 true,当模板中缺少字段或映射键时,忽略模板中的任何错误。仅适用于 golang 和 jsonpath 输出格式。 | |
--annotations strings | |
应用于 Pod 的注解。 | |
--attach | |
如果为 true,则等待 Pod 开始运行,然后附加到 Pod,就像调用了 'kubectl attach ...' 一样。默认值为 false,除非设置了 '-i/--stdin',在这种情况下默认值为 true。设置 '--restart=Never' 时,返回容器进程的退出代码。 | |
--cascade string[="background"] 默认值: "background" | |
必须是 "background"、"orphan" 或 "foreground"。选择从属对象(例如,由 ReplicationController 创建的 Pod)的级联删除策略。默认为 background。 | |
--command | |
如果为 true 且存在额外参数,则将其用作容器中的 'command' 字段,而不是默认的 'args' 字段。 | |
--dry-run string[="unchanged"] 默认值: "none" | |
必须是 "none"、"server" 或 "client"。如果采用 client 策略,则仅打印将发送的对象,而不发送它。如果采用 server 策略,则提交服务器端请求,但不持久化资源。 | |
--env strings | |
在容器中设置的环境变量。 | |
--expose --port | |
如果为 true,则创建与 Pod 关联的 ClusterIP 服务。需要 --port。 | |
--field-manager string 默认值: "kubectl-run" | |
用于跟踪字段所有权的管理器的名称。 | |
-f, --filename strings | |
用于替换资源。 | |
--force | |
如果为 true,则立即从 API 中移除资源并绕过优雅删除。请注意,立即删除某些资源可能会导致不一致或数据丢失,并且需要确认。 | |
--grace-period int 默认值: -1 | |
给予资源以优雅终止的时间(以秒为单位)。如果为负数则忽略。设置为 1 表示立即关机。仅当 --force 为 true(强制删除)时才能设置为 0。 | |
-h, --help | |
run 的帮助信息 | |
--image string | |
容器要运行的镜像。 | |
--image-pull-policy string | |
容器的镜像拉取策略。如果留空,此值将不会由客户端指定,而由服务器默认设置。 | |
-k, --kustomize string | |
处理 kustomization 目录。此标志不能与 -f 或 -R 一起使用。 | |
-l, --labels string | |
要应用于 Pod 的逗号分隔标签。将覆盖之前的值。 | |
--leave-stdin-open | |
如果 Pod 在交互模式下或带有 stdin 启动,则在第一次附加完成后保持 stdin 打开。默认情况下,stdin 在第一次附加完成后会关闭。 | |
-o, --output string | |
输出格式。以下之一: (json, yaml, name, go-template, go-template-file, template, templatefile, jsonpath, jsonpath-as-json, jsonpath-file)。 | |
--override-type string 默认值: "merge" | |
用于覆盖生成对象的方法:json, merge, 或 strategic。 | |
--overrides string | |
生成对象的内联 JSON 覆盖。如果此值非空,则用于覆盖生成的对象。要求对象提供有效的 apiVersion 字段。 | |
--pod-running-timeout duration 默认值: 1m0s | |
等待至少一个 Pod 运行的时间长度(例如 5s、2m 或 3h,必须大于零) | |
--port string | |
此容器暴露的端口。 | |
--privileged | |
如果为 true,则在特权模式下运行容器。 | |
-q, --quiet | |
如果为 true,则抑制提示消息。 | |
-R, --recursive | |
递归处理 -f, --filename 中使用的目录。当您想管理组织在同一目录中的相关清单时非常有用。 | |
--restart string 默认值: "Always" | |
此 Pod 的重启策略。合法值 [Always, OnFailure, Never]。 | |
--rm | |
如果为 true,则在 Pod 退出后删除它。仅在附加到容器时有效,例如使用 '--attach' 或 '-i/--stdin'。 | |
--save-config | |
如果为 true,则当前对象的配置将保存在其注解中。否则,注解将保持不变。此标志在您将来想对此对象执行 kubectl apply 时很有用。 | |
--show-managed-fields | |
如果为 true,则以 JSON 或 YAML 格式打印对象时保留 managedFields。 | |
-i, --stdin | |
在 Pod 中的容器上保持 stdin 打开,即使没有附加任何东西。 | |
--template string | |
当 -o=go-template, -o=go-template-file 时使用的模板字符串或模板文件路径。模板格式为 golang 模板 [https://golang.ac.cn/pkg/text/template/#pkg-overview]。 | |
--timeout duration | |
在放弃删除之前等待的时间长度,零表示根据对象大小确定超时时间 | |
-t, --tty | |
为 Pod 中的容器分配一个 TTY。 | |
--wait | |
如果为 true,则在返回之前等待资源被删除。这会等待终结器 (finalizers)。 |
继承的父级选项
--as string | |
用于操作的模拟用户名。用户可以是普通用户,也可以是命名空间中的服务账号。 | |
--as-group strings | |
用于操作的模拟组名,此标志可以重复使用以指定多个组。 | |
--as-uid string | |
用于操作的模拟 UID。 | |
--cache-dir string 默认值: "$HOME/.kube/cache" | |
默认缓存目录 | |
--certificate-authority string | |
证书颁发机构的证书文件路径 | |
--client-certificate string | |
TLS 客户端证书文件路径 | |
--client-key string | |
TLS 客户端密钥文件路径 | |
--cluster string | |
要使用的 kubeconfig 集群名称 | |
--context string | |
要使用的 kubeconfig 上下文名称 | |
--default-not-ready-toleration-seconds int 默认值: 300 | |
指示默认添加到每个尚无此类容忍度的 Pod 的 notReady:NoExecute 容忍度的 tolerationSeconds。 | |
--default-unreachable-toleration-seconds int 默认值: 300 | |
指示默认添加到每个尚无此类容忍度的 Pod 的 unreachable:NoExecute 容忍度的 tolerationSeconds。 | |
--disable-compression | |
如果为 true,则对所有发送到服务器的请求禁用响应压缩 | |
--insecure-skip-tls-verify | |
如果为 true,则不会检查服务器证书的有效性。这会使您的 HTTPS 连接不安全 | |
--kubeconfig string | |
用于 CLI 请求的 kubeconfig 文件路径。 | |
--match-server-version | |
要求服务器版本与客户端版本匹配 | |
-n, --namespace string | |
如果存在,则指定此 CLI 请求的命名空间范围 | |
--password string | |
用于 API Server 基本认证的密码 | |
--profile string 默认值: "none" | |
要捕获的 profile 名称。以下之一 (none|cpu|heap|goroutine|threadcreate|block|mutex) | |
--profile-output string 默认值: "profile.pprof" | |
要将 profile 写入的文件名 | |
--request-timeout string 默认值: "0" | |
放弃单个服务器请求前等待的时间长度。非零值应包含对应的时间单位(例如 1s, 2m, 3h)。值为零表示请求不超时。 | |
-s, --server string | |
Kubernetes API Server 的地址和端口 | |
--storage-driver-buffer-duration duration 默认值: 1m0s | |
存储驱动程序中的写入将在此持续时间内进行缓冲,并作为单个事务提交到非内存后端 | |
--storage-driver-db string 默认值: "cadvisor" | |
数据库名称 | |
--storage-driver-host string 默认值: "localhost:8086" | |
数据库 host:port | |
--storage-driver-password string 默认值: "root" | |
数据库密码 | |
--storage-driver-secure | |
使用安全连接连接数据库 | |
--storage-driver-table string 默认值: "stats" | |
表名称 | |
--storage-driver-user string 默认值: "root" | |
数据库用户名 | |
--tls-server-name string | |
用于验证服务器证书的服务器名称。如果未提供,则使用用于联系服务器的主机名 | |
--token string | |
用于 API Server 认证的 Bearer Token | |
--user string | |
要使用的 kubeconfig 用户名 | |
--username string | |
用于 API Server 基本认证的用户名 | |
--version version[=true] | |
--version, --version=raw 打印版本信息并退出;--version=vX.Y.Z... 设置报告的版本 | |
--warnings-as-errors | |
将从服务器收到的警告视为错误并以非零退出码退出 |
参见
- kubectl - kubectl 控制 Kubernetes 集群管理器
本页面是自动生成的。
如果您打算报告本页面问题,请在问题描述中提及本页面是自动生成的。修复可能需要在 Kubernetes 项目中的其他地方进行。