K8s Lab 把当前仓库文档整理成一个可阅读的网页站点

Repository Reading Site

10-web-headless-service.yaml

manifests/09-statefulset/10-web-headless-service.yaml

Text Assetmanifests/09-statefulset/10-web-headless-service.yaml245 B2026年4月10日 02:15查看原始内容
apiVersion: v1
kind: Service
metadata:
  name: web-hl
  namespace: stateful-lab
  labels:
    lesson: statefulset
spec:
  clusterIP: None
  selector:
    app: web
    lesson: statefulset
  ports:
  - name: http
    port: 80
    targetPort: http