Name: my-podNamespace: my-namespace...Containers: my-container: Container ID: container-id Image: my-image:latest ...Conditions: Type Status --- --- Initialized True Ready True ContainersReady True PodScheduled True...Events: Type Reason...
kubectl [command] [TYPE] [NAME] [flags] 上述语法解释说明: command:指定要对一个或多个资源执行的操作,例如create、get、describe、delete等。 type:指定资源类型。资源类型不区分大小写,可以指定单数、复数或缩写形式。例如,以下命令输出相同的结果: 代码语言:javascript 复制 kubectl get pod pod1 kubectl get...
alias klc='kubectl config get-contexts -o name | sed "s/^/ /;\|^ $(krc)$|s/ /*/"' # Change current context alias kcc='kubectl config use-context "$(klc | fzf -e | sed "s/^..//")"' # Get current namespace alias krn='kubectl config get-contexts --no-headers "$(krc)...
boolean. 可选。 在时connectionType = Azure Resource Manager && command != logout使用 。 默认值:false。 使用群集管理员凭据,而不是默认的群集用户凭据。 namespace-命名 空间 string. 可选。 在时command != logout使用 。 使用 –namespace 标志设置 kubectl 命令的命名空间。 如果未提供命名空间,则命令...
[--overrides=inline-json] [--command] -- [COMMAND] [args...] [options] 选项: --name=用来运行的容器镜像 --labels=pod的标签 -replicas=1:为此容器创建的副本数。 默认值为 1。 --restart="Always":此 Pod 的重启策略。 合法值 [Always、OnFailure、Never]。 如果设置为“Always”,则为此 pod ...
kubectl edit namespace <name_of_namespace>To edit and update the namespace definition kubectl delete namespace <name_of_namespace>To delete a namespace Note:In the command we can replace “namespace” with its shortcode “ns”. The output will remain same in both the cases. ...
kubectl delete pod <pod_name>: Delete a pod kubectl create pod <pod_name>: Create a pod kubectl exec <pod_name> -c <container_name> <command>: Execute a command against a container in a pod kubectl exec -it <pod_name> /bin/sh: Get interactive shell on a a single-container pod ...
"' # Get current namespace alias krn='kubectl config get-contexts --no-headers "$(krc)" | awk "{print \$5}" | sed "s/^$/default/"' # List all namespaces alias kln='kubectl get -o name ns | sed "s|^.*/| |;\|^ $(krn)$|s/ /*/"' # Change current namespace alias ...
语法:run NAME --image=image [--env="key=value"] [--port=port] [--replicas=replicas] [--dry-run=bool] [--overrides=inline-json] [--command] -- [COMMAND] [args...] 示例,运行一个名称为nginx,副本数为3,标签为app=example,镜像为nginx:1.10,端口为80的容器实例 ...
kubectl [command] Available Commands: get Display one or many resources describe Show details of a specific resource or group of resources create Create a resource by filename or stdin replace Replace a resource by filename or stdin. patch Update field(s) of a resource using strategic merge pa...