Skip to content
Merged
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.98
version: 0.1.99
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.68"
tag: "1.1.69"
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.81
version: 0.10.82
appVersion: "1.0.0"
icon: https://www.datafold.com/logo.png

Expand Down
2 changes: 1 addition & 1 deletion charts/datafold/charts/operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ name: operator
description: A Helm chart for Kubernetes
type: application
version: 0.1.0
appVersion: "1.2.13"
appVersion: "1.2.14"
21 changes: 16 additions & 5 deletions charts/datafold/charts/server/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
maxUnavailable: 0
selector:
matchLabels:
{{- include "server.selectorLabels" . | nindent 6 }}
Expand Down Expand Up @@ -133,6 +133,19 @@ spec:
- name: server
containerPort: {{ .Values.global.server.port }}
protocol: TCP
startupProbe:
httpGet:
path: /status_check?token={{ .Values.global.statusCheckToken }}
port: server
scheme: HTTP
httpHeaders:
- name: "Host"
value: {{ .Values.global.serverName }}
- name: "X-Forwarded-Proto"
value: https
periodSeconds: 5
failureThreshold: 12
timeoutSeconds: 5
livenessProbe:
failureThreshold: 10
httpGet:
Expand All @@ -144,12 +157,11 @@ spec:
value: {{ .Values.global.serverName }}
- name: "X-Forwarded-Proto"
value: https
initialDelaySeconds: 20
periodSeconds: 15
successThreshold: 1
timeoutSeconds: 5
readinessProbe:
failureThreshold: 10
failureThreshold: 3
httpGet:
path: /status_check?token={{ .Values.global.statusCheckToken }}
port: server
Expand All @@ -159,8 +171,7 @@ spec:
value: {{ .Values.global.serverName }}
- name: "X-Forwarded-Proto"
value: https
initialDelaySeconds: 20
periodSeconds: 15
periodSeconds: 5
successThreshold: 1
timeoutSeconds: 5
resources:
Expand Down
Loading