Skip to content

Commit

Permalink
Merge branch 'temporalio:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Dariusch authored Jan 27, 2025
2 parents 467f30b + 31d1f4c commit 9246a07
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
3 changes: 3 additions & 0 deletions charts/temporal/templates/server-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ data:
excludeTags:
{{- toYaml . | nindent 10 }}
{{- end }}
{{- with $server.metrics.prefix }}
prefix: "{{- . }}"
{{- end }}
{{- with $server.config.prometheus }}
prometheus:
{{- toYaml . | nindent 10 }}
Expand Down
4 changes: 4 additions & 0 deletions charts/temporal/templates/web-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ spec:
- secretRef:
name: {{ .Values.web.additionalEnvSecretName }}
{{- end }}
livenessProbe:
initialDelaySeconds: 10
tcpSocket:
port: http
ports:
- name: http
containerPort: 8080
Expand Down
5 changes: 3 additions & 2 deletions charts/temporal/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ server:
tags: {}
# Tags to be excluded in Prometheus metrics
excludeTags: {}
prefix:
# Enable Prometheus ServiceMonitor
# Use this if you installed the Prometheus Operator (https://github.com/coreos/prometheus-operator).
serviceMonitor:
Expand Down Expand Up @@ -153,7 +154,7 @@ server:
consistency: "local_quorum"
serialConsistency: "local_serial"
sql:
driver: "mysql"
driver: "mysql8"
host: "mysql"
port: 3306
database: "temporal"
Expand Down Expand Up @@ -183,7 +184,7 @@ server:
consistency: "local_quorum"
serialConsistency: "local_serial"
sql:
driver: "mysql"
driver: "mysql8"
host: "mysql"
port: 3306
database: "temporal_visibility"
Expand Down
4 changes: 2 additions & 2 deletions charts/temporal/values/values.aurora-mysql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ server:
driver: "sql"

sql:
driver: "mysql"
driver: "mysql8"
host: _HOST_
port: 3306
database: temporal
Expand All @@ -20,7 +20,7 @@ server:
driver: "sql"

sql:
driver: "mysql"
driver: "mysql8"
host: _HOST_
port: 3306
database: temporal_visibility
Expand Down

0 comments on commit 9246a07

Please sign in to comment.