1、kubectl 命令格式: kubectl [command] [type] [name] [flags] 参数: command:指定要对资源执行的操作,例如create、get、describe、delete type:指定资源类型,资源类型是大小写敏感的,开发者能够以单数 、复数 和 缩略的形式 kubectl get pod pod1 kubectl get pods pod1 kubectl get po pod1 name:指定资源...
kubectl rollout 资源管理对象的部署 kubectl rollout-update 使用 rc(replication controller)来做滚动更新 kubectl scale 扩容或者缩容 deployment replicaset replication contrller 等 kubectl autoscale 自动设置在 k8s 系统中运行的 pod 数量(水平自动伸缩) 集群管理命令 Cluster Manager Commands 命令 说明 kubectl ceti...
rolling-update:对指定的 RC 执行滚动升级 exec:在容器内部执行命令 port-forward:将本地端口转发到 Pod proxy:为 Kubernetes API server 启动代理服务器 run:在集群中使用指定镜像启动容器 expose:将 SVC 或 pod 暴露为新的 kubernetes service label:更新资源的 label config:修改 kubernetes 配置文件 cluster-info...
true # boolean. Force update secret. Default: true.# ConfigMaps#configMapName: # string. ConfigMap name.#forceUpdateConfigMap: false # boolean. Force update configmap. Default: false.#useConfigMapFile: false # boolean. Use file. Default: false.#configMapFile: # string. Required when useConfigMap...
kubectl rollout-update 使用rc(replication controller)来做滚动恩星 kubectl scale 扩容或者缩容deployment replicaset replication contrller等 kubectl autoscale 自动设置在k8s系统中运行的pod数量(水平自动伸缩) (4)Cluster Manager Commands 集群管理命令 代码语言:javascript ...
kubectl exec POD [-c CONTAINER] [-i] [-t] [flags] [– COMMAND [args…]] 对pod中的容器执行命令或进入Pod容器★★★ proxy kubectl proxy [–port=PORT] [–www=static-dir] [–www-prefix=prefix] [–api-prefix=prefix] [flags] 运行Kubernetes...
kubectl [command] [TYPE] [NAME] [flags] 其中,command、TYPE、NAME、flags的含义如下。 command:子命令,用于操作资源对象,例如create、get、describe、delete等。 TYPE:资源对象的类型,区分大小写,能以单数、复数或者简写形式表示 NAME:资源对象的名称,区分大小写。如果不指定名称,系统则将返回属于TYPE的全部对象的...
kubectl [command] [TYPE] [NAME] [flags] 1. 2.其中command,TYPE,NAME,和flags分别是: command 指定要在一个或多个资源进行的操作,例如create,get,describe,delete。例如“kubectl get cs”。 1. TYPE 指定资源类型。资源类型不区分大小写,可以指定单数,复数或缩写形式。
api-versions Print the supportedAPIversions on the server,inthe formof"group/version"config 修改 kubeconfig 文件 plugin Runs a command-line plugin version 输出 client 和 server 的版本信息 kubectl的常用命令 kubectl作为kubernetes的命令行工具,主要的职责就是对集群中的资源的对象进行操作,这些操作包括对资源...
kubectl [command] [TYPE] [NAME] -o=<output_format> 常用-o yaml,一般使用yaml文件,看的比json清晰,配置项太多了json的花括号看着很乱。 实战 基本命令 create 从命令行或文件创建资源,可以是json或yaml格式。命令格式如下: kubectl create -f FILENAME [options] ...