All checks were successful
Build image / build (push) Successful in 1m1s
- 添加host-time和volume-shck44的volume配置 - 配置ingress规则,支持ht.timerzz.com/api/v2/providers路径 - 设置liveness和readiness探针 - 配置默认的ClusterIP服务 - 添加configMap挂载支持"
16 lines
355 B
YAML
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 }}
|