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/cubejs/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ maintainers:
email: developers@taskworld.com

# Increment this version on every chart change
version: 1.0.3
version: 1.0.4

# Tracks the deployed Cube.js application version
appVersion: "1.6.29"
2 changes: 1 addition & 1 deletion charts/cubejs/templates/cubestore-router-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
- port: {{ .Values.cubestoreRouter.service.service_port }}
targetPort: {{ .Values.cubestoreRouter.service.port }}
protocol: TCP
name: http
name: tcp-meta
- port: 3030
targetPort: 3030
protocol: TCP
Expand Down
12 changes: 7 additions & 5 deletions charts/cubejs/templates/cubestore-router-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ spec:
image: "{{ .Values.cubestoreRouter.image }}"
imagePullPolicy: {{ .Values.cubestoreRouter.pullPolicy }}
ports:
- name: http
- name: tcp-meta
containerPort: {{ .Values.cubestoreRouter.service.port }}
protocol: TCP
- name: http2
Expand All @@ -69,14 +69,16 @@ spec:
containerPort: 3306
protocol: TCP
livenessProbe:
tcpSocket:
port: {{ .Values.cubestoreRouter.service.port }}
httpGet:
path: /livez
port: 3031
initialDelaySeconds: 30
periodSeconds: 10
failureThreshold: 3
readinessProbe:
tcpSocket:
port: {{ .Values.cubestoreRouter.service.port }}
httpGet:
path: /readyz
port: 3031
initialDelaySeconds: 10
periodSeconds: 5
failureThreshold: 3
Expand Down
2 changes: 1 addition & 1 deletion charts/cubejs/templates/cubestore-worker-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ spec:
- port: {{ .Values.cubestoreWorker.service.service_port }}
targetPort: {{ .Values.cubestoreWorker.service.port }}
protocol: TCP
name: http
name: tcp-worker
selector:
cubejsApp: cubestoreWorker
2 changes: 1 addition & 1 deletion charts/cubejs/templates/cubestore-worker-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ spec:
image: "{{ .Values.cubestoreWorker.image }}"
imagePullPolicy: {{ .Values.cubestoreWorker.pullPolicy }}
ports:
- name: http
- name: tcp-worker
containerPort: {{ .Values.cubestoreWorker.service.port }}
protocol: TCP
livenessProbe:
Expand Down