Is there a values files to work with sqllite similar to ones given in helm-charts/charts/temporal/values/values.mysql.yaml at main · temporalio/helm-charts · GitHub?
I’m running temporal server version 1.25.2 helm chart with following configuration
Helm install is failing with error: Error: INSTALLATION FAILED: execution error at (dc-temporal/charts/temporal/templates/server-job.yaml:58:18): Please specify cassandra port for default store
Is it supported to run SQLite with 1.25.2? How to overcome this error?
Blockquote
server:
config:
persistence:
defaultStore: sqlite-default
visibilityStore: sqlite-visibility
numHistoryShards: 4
datastores:
sqlite-default:
sql:
pluginName: “sqlite”
databaseName: “/var/lib/temporal/default.db”
connectAddr: “localhost”
connectProtocol: “tcp”
connectAttributes:
cache: “private”
setup: true
sqlite-visibility:
sql:
pluginName: “sqlite”
databaseName: “/var/lib/temporal/visibility.db”
connectAddr: “localhost”
connectProtocol: “tcp”
connectAttributes:
cache: “private”
setup: true
cassandra:
enabled: true
config:
contactPoints:
port: null
elasticsearch:
enabled: false
prometheus:
enabled: false
grafana:
enabled: false