Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/datafold-manager/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: datafold-manager
description: Helm chart for Datafold Operator
type: application
version: 0.1.103
version: 0.1.104
appVersion: "1.0.0"
icon: https://www.datafold.com/logo.png

Expand Down
2 changes: 1 addition & 1 deletion charts/datafold-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ operator:
# Operator image configuration
image:
repository: us-docker.pkg.dev/datadiff-mm/datafold/datafold-operator
tag: "1.1.71"
tag: "1.1.72"
pullPolicy: Always

# Operator deployment configuration
Expand Down
2 changes: 1 addition & 1 deletion charts/datafold/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: datafold
description: Helm chart package to deploy Datafold on kubernetes.
type: application
version: 0.10.87
version: 0.10.88
appVersion: "1.0.0"
icon: https://www.datafold.com/logo.png

Expand Down
23 changes: 22 additions & 1 deletion charts/datafold/charts/worker-temporal/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,35 @@ spec:
- name: TEMPORAL_METRICS_BIND_ADDRESS
value: "0.0.0.0:{{ .Values.metrics.port }}"
{{- end }}
{{- if .Values.liveness.enabled }}
- name: TEMPORAL_LIVENESS_PORT
value: {{ .Values.liveness.port | quote }}
{{- end }}
{{- with .Values.extraEnv }}
{{- toYaml . | nindent 12 }}
{{- end }}
{{- if .Values.metrics.enabled }}
{{- if or .Values.metrics.enabled .Values.liveness.enabled }}
ports:
{{- if .Values.metrics.enabled }}
- name: metrics
containerPort: {{ .Values.metrics.port }}
protocol: TCP
{{- end }}
{{- if .Values.liveness.enabled }}
- name: liveness
containerPort: {{ .Values.liveness.port }}
protocol: TCP
{{- end }}
{{- end }}
{{- if .Values.liveness.enabled }}
livenessProbe:
httpGet:
path: /livez
port: {{ .Values.liveness.port }}
initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
periodSeconds: {{ .Values.liveness.periodSeconds }}
failureThreshold: {{ .Values.liveness.failureThreshold }}
timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
{{- end }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
Expand Down
11 changes: 11 additions & 0 deletions charts/datafold/charts/worker-temporal/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,17 @@ metrics:
enabled: true
port: 9090

liveness:
# Starts a lightweight HTTP server inside the worker and wires up a K8s
# livenessProbe against /livez. The probe returns 503 when any Temporal worker
# stops running, a fatal error is raised, or the process pool becomes broken.
enabled: true
port: 8091
initialDelaySeconds: 60
periodSeconds: 20
failureThreshold: 3
timeoutSeconds: 5

extraEnv: []

volumes: []
Expand Down
Loading