k8s kubectl expose命令使用详解

Take a replication controller, service, deployment or pod and expose it as a new Kubernetes Service

摘要

Expose a resource as a new Kubernetes service.

Looks up a deployment, service, replica set, replication controller or pod by name and uses the selector for that resource as the selector for a new service on the specified port. A deployment or replica set will be exposed as a service only if its selector is convertible to a selector that service supports, i.e. when the selector contains only the matchLabels component. Note that if no port is specified via –port and the exposed resource has multiple ports, all will be re-used by the new service. Also if no labels are specified, the new service will re-use the labels from the resource it exposes.

Possible resources include (case insensitive): pod (po), service (svc), replicationcontroller (rc), deployment, replicaset (rs)

kubectl expose (-f FILENAME | TYPE NAME) [--port=port] [--protocol=TCP|UDP] [--target-port=number-or-name] [--name=name] [--external-ip=external-ip-of-service] [--type=type]

示例

# Create a service for a replicated nginx, which serves on port 80 and connects to the containers on port 8000.
kubectl expose rc nginx --port=80 --target-port=8000# Create a service for a replication controller identified by type and name specified in "nginx-controller.yaml", which serves on port 80 and connects to the containers on port 8000.
kubectl expose -f nginx-controller.yaml --port=80 --target-port=8000# Create a service for a pod valid-pod, which serves on port 444 with the name "frontend"
kubectl expose pod valid-pod --port=444 --name=frontend# Create a second service based on the above service, exposing the container port 8443 as port 443 with the name "nginx-https"
kubectl expose service nginx --port=443 --target-port=8443 --name=nginx-https# Create a service for a replicated streaming application on port 4100 balancing UDP traffic and named 'video-stream'.
kubectl expose rc streamer --port=4100 --protocol=udp --name=video-stream# Create a service for a replicated nginx using replica set, which serves on port 80 and connects to the containers on port 8000.
kubectl expose rs nginx --port=80 --target-port=8000# Create a service for an nginx deployment, which serves on port 80 and connects to the containers on port 8000.
kubectl expose deployment nginx --port=80 --target-port=8000

选项

      --dry-run[=false]: If true, only print the object that would be sent, without sending it.--external-ip="": Additional external IP address (not managed by Kubernetes) to accept for the service. If this IP is routed to a node, the service can be accessed by this IP in addition to its generated service IP.-f, --filename=[]: Filename, directory, or URL to a file identifying the resource to expose a service--generator="service/v2": The name of the API generator to use. There are 2 generators: 'service/v1' and 'service/v2'. The only difference between them is that service port in v1 is named 'default', while it is left unnamed in v2. Default is 'service/v2'.-l, --labels="": Labels to apply to the service created by this call.--load-balancer-ip="": IP to assign to to the Load Balancer. If empty, an ephemeral IP will be created and used (cloud-provider specific).--name="": The name for the newly created object.--no-headers[=false]: 当使用默认输出格式时不打印标题栏。-o, --output="": Output format. One of: json|yaml|wide|name|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://releases.k8s.io/release-1.3/docs/user-guide/jsonpath.md].--output-version="": Output the formatted object with the given group version (for ex: 'extensions/v1beta1').--overrides="": An inline JSON override for the generated object. If this is non-empty, it is used to override the generated object. Requires that the object supply a valid apiVersion field.--port="": The port that the service should serve on. Copied from the resource being exposed, if unspecified--protocol="": The network protocol for the service to be created. Default is 'TCP'.--record[=false]: Record current kubectl command in the resource annotation.-R, --recursive[=false]: Process the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.--save-config[=false]: If true, the configuration of current object will be saved in its annotation. This is useful when you want to perform kubectl apply on this object in the future.--selector="": A label selector to use for this service. Only equality-based selector requirements are supported. If empty (the default) infer the selector from the replication controller or replica set.--session-affinity="": If non-empty, set the session affinity for the service to this; legal values: 'None', 'ClientIP'-a, --show-all[=false]: When printing, show all resources (default hide terminated pods.)--show-labels[=false]: When printing, show all labels as the last column (default hide labels column)--sort-by="": If non-empty, sort list types using this field specification.  The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.--target-port="": Name or number for the port on the container that the service should direct traffic to. Optional.--template="": Template string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].--type="": Type for this service: ClusterIP, NodePort, or LoadBalancer. Default is 'ClusterIP'.

继承自父命令的选项

      --alsologtostderr[=false]: 同时输出日志到标准错误控制台和文件。--certificate-authority="": 用以进行认证授权的.cert文件路径。--client-certificate="": TLS使用的客户端证书路径。--client-key="": TLS使用的客户端密钥路径。--cluster="": 指定使用的kubeconfig配置文件中的集群名。--context="": 指定使用的kubeconfig配置文件中的环境名。--insecure-skip-tls-verify[=false]: 如果为true,将不会检查服务器凭证的有效性,这会导致你的HTTPS链接变得不安全。--kubeconfig="": 命令行请求使用的配置文件路径。--log-backtrace-at=:0: 当日志长度超过定义的行数时,忽略堆栈信息。--log-dir="": 如果不为空,将日志文件写入此目录。--log-flush-frequency=5s: 刷新日志的最大时间间隔。--logtostderr[=true]: 输出日志到标准错误控制台,不输出到文件。--match-server-version[=false]: 要求服务端和客户端版本匹配。--namespace="": 如果不为空,命令将使用此namespace。--password="": API Server进行简单认证使用的密码。-s, --server="": Kubernetes API Server的地址和端口号。--stderrthreshold=2: 高于此级别的日志将被输出到错误控制台。--token="": 认证到API Server使用的令牌。--user="": 指定使用的kubeconfig配置文件中的用户名。--username="": API Server进行简单认证使用的用户名。--v=0: 指定输出日志的级别。--vmodule=: 指定输出日志的模块,格式如下:pattern=N,使用逗号分隔。

参见

  • kubectl - 使用kubectl来管理Kubernetes集群。
  • http://kubernetes.kansea.com/docs/user-guide/kubectl/kubectl_expose/

k8s kubectl expose命令使用详解相关推荐

  1. k8s kubectl run命令使用详解

    k8s kubectl run命令使用详解 在集群上运行指定镜像. 摘要 创建并运行一个指定的可复制的镜像. 创建一个deployment或者job来管理创建的容器. kubectl run NAME ...

  2. k8s kubectl create命令使用详解

    k8s kubectl create命令使用详解 Create a resource by filename or stdin 摘要 Create a resource by filename or ...

  3. kubectl常用命令大全详解

    文章目录 说明 基础命令详解:create.delete.get.run.expose.set.explain.edit create 命令:根据文件或者输入来创建资源 创建Deployment和Se ...

  4. 容器编排技术 -- Kubernetes kubectl expose命令详解

    容器编排技术 -- Kubernetes kubectl expose命令详解 1 kubectl expose 2 语法 3 示例 4 其它详细说明 kubectl expose 将资源暴露为新的K ...

  5. Kubernetes K8S之资源控制器Daemonset详解

    Kubernetes的资源控制器Daemonset详解与示例 主机配置规划 服务器名称(hostname) 系统版本 配置 内网IP 外网IP(模拟) k8s-master CentOS7.7 2C/ ...

  6. Linux服务端开发——Linux中stat函数和stat命令使用详解

    这篇文章主要介绍了Linux中stat函数和stat命令使用详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧 stat函数和s ...

  7. 计算机网络管理的常用命令,网络管理常用命令图文详解.pdf

    网络工程师必备 – 网络管理常用命令图文详解 网络工程师必备 网络管理常用命令 图文详解 V1.0 V1.0 包含 ping.ipconfig.netstat.nbtstat.tracert. pat ...

  8. php mysql source_Mysql数据库导入命令Source详解

    Mysql数据库导入命令Source详解 几个常用用例: 1.导出整个数据库 mysqldump -u 用户名 -p 数据库名 > 导出的文件名mysqldump -u root -p data ...

  9. mkdir命令使用详解

    linux下mkdir命令使用详解---linux下创建目录命令 时间:2010-06-03 21:46来源:未知 作者:Linux安全网 点击: 957次 linux mkdir命令: 创建目录 介 ...

最新文章

  1. sql server 存储过程 拼接SQL 超过8000
  2. ASP.NET 页面事件执行顺序
  3. Linux上传与下载工具介绍
  4. wxWidgets:在带有 DC 的面板上绘图
  5. php 伪静态 500错误,Apache开启伪静态后报500错误.
  6. ASP获取上月本月下月的第一天和最后一天
  7. php登录界面模板美化,一款简单好看的登录界面——Typecho美化包 Sign-Page-For-Typecho...
  8. 苹果+beta+软件测试计划,自讨苦吃:加入苹果Apple Beta版软件计划之后
  9. 光时域反射仪 光通信工程TFN F7 OTDR 测试耗损必备
  10. 服务器系统2008网络发现,Windows Server 2008中解决局域网共享发现问题
  11. DWG文件打开乱码怎么办?
  12. 《灵飞经5·龙生九子》 第二十二章 河咸海淡(上)
  13. 高德地图python爬虫 商家_Python3 | 通过百度地图API获取商家详细信息
  14. java主要城市时区对照表(包含时区显示)
  15. 移动性能测试工具perfDog分享和wifi链接问题
  16. 计算机网络--虚拟局域网
  17. 用1:3电流镜恒定GM的输入输出轨到轨运放设计(自用一)
  18. Zhong__k8s基础尝试和配置flannel
  19. svg 内部元素scale 缩放不在原位置解决办法
  20. 推荐一个自学java非常好的网站!

热门文章

  1. 【自考】——《网管》魅力1
  2. 地平线旭日X3派(一)系统配置
  3. 用html5做元素周期表,Web纯前端“旭日图”实现元素周期表
  4. 让945GC(GMA950)原生支持1440X900分辨率的方法
  5. 洞态 IAST v1.1.4 新版本来袭,DevSecOps 更进一步
  6. Starling-Feathers中设置单个组件对象的样式
  7. 临床预测模型评鉴(PMID31027946)-胃癌生存率
  8. 插入外置网卡端口顺序混乱--linux系统
  9. Spring Boot 这样优化,让你的项目飞起来!
  10. 首考 8天冲击雅思6.5