Temporal with Amazon RDS
Download and create the CA bundle secret
wget https://truststore.pki.rds.amazonaws.com/global/global-bundle.pem
kubectl -n immuta create secret generic secret-with-certs --from-file=global-bundle.pemHelm values
temporal:
enabled: true
server:
extraVolumes:
- name: secret-with-certs
secret:
secretName: secret-with-certs
extraVolumeMounts:
- name: secret-with-certs
mountPath: /certs/
config:
persistence:
default:
sql:
database: temporal
tls:
enabled: true
caFile: /certs/global-bundle.pem
visibility:
sql:
database: temporal_visibility
tls:
enabled: true
caFile: /certs/global-bundle.pem
Last updated

