uptrace / helm-charts

Uptrace Helm Chart for Kubernetes
https://uptrace.dev/get/install.html
Apache License 2.0
19 stars 18 forks source link

feat: add persistence options for postgresql statefulset #33

Closed QuentinFAIDIDE closed 7 months ago

QuentinFAIDIDE commented 7 months ago

This PR persists postgresql storage the same way it is for clickhouse:

postgresql:
  enabled: true
  imagePullSecrets: []
  image:
    repository: postgres
    pullPolicy: IfNotPresent
    tag: '15-alpine'
  persistence:
    enabled: true
    storageClassName: '' # leave empty to use the default storage class
    size: 8Gi
vmihailenco commented 7 months ago

Thanks :+1: