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
373 B
YAML
16 lines
373 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: "{{ include "chart.fullname" . }}-test-connection"
|
|
labels:
|
|
{{- include "chart.labels" . | nindent 4 }}
|
|
annotations:
|
|
"helm.sh/hook": test
|
|
spec:
|
|
containers:
|
|
- name: wget
|
|
image: busybox
|
|
command: ['wget']
|
|
args: ['{{ include "chart.fullname" . }}:{{ .Values.service.port }}']
|
|
restartPolicy: Never
|