How to use azure blobstorages in official sonarqube-lts helm charts for persistence

How to use azure blobstorages on official sonarqube-lts helm charts for persistence.
If possible please share any example. so that i can easily configure/update in values.yaml

Hi @pjaggu1 ,

what would be the storage class name in your cluster?
you can enable persistency like this:

persistence:
  enabled: true
  ## Set annotations on pvc
  annotations: {}

  ## Specify an existing volume claim instead of creating a new one.
  ## When using this option all following options like storageClass, accessMode and size are ignored.
  # existingClaim:

  ## If defined, storageClassName: <storageClass>
  ## If set to "-", storageClassName: "", which disables dynamic provisioning
  ## If undefined (the default) or set to null, no storageClassName spec is
  ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
  ##   GKE, AWS & OpenStack)
  ##
  storageClass: blob-fuse
  accessMode: ReadWriteOnce
  size: 5Gi
  uid: 1000

hope that helps :slight_smile:

1 Like

just linking your other post

Thank you