You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
553 B
16 lines
553 B
2 years ago
|
apiVersion: v1 # 版本
|
||
|
kind: Service # 类型
|
||
|
metadata: # 元数据
|
||
|
name: # 资源名称
|
||
|
namespace: # 命名空间
|
||
|
spec:
|
||
|
selector: # 标签选择器,用于确定当前Service代理那些Pod
|
||
|
app: nginx
|
||
|
type: # Service的类型,指定Service的访问方式
|
||
|
clusterIP: # 虚拟服务的IP地址
|
||
|
sessionAffinity: # session亲和性,支持ClientIP、None两个选项,默认值为None
|
||
|
ports: # 端口信息
|
||
|
- port: 8080 # Service端口
|
||
|
protocol: TCP # 协议
|
||
|
targetPort : # Pod端口
|
||
|
nodePort: # 主机端口
|