provider/build/chart/templates/service.yaml
zhanghaogang 01fa705525
All checks were successful
Build image / build (push) Successful in 1m1s
feat: 更新Kubernetes chart配置
- 添加host-time和volume-shck44的volume配置
- 配置ingress规则,支持ht.timerzz.com/api/v2/providers路径
- 设置liveness和readiness探针
- 配置默认的ClusterIP服务
- 添加configMap挂载支持"
2025-03-13 13:30:03 +08:00

16 lines
355 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ include "chart.fullname" . }}
labels:
{{- include "chart.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "chart.selectorLabels" . | nindent 4 }}