Upgrade to v0.76 from earlier versions of SigNoz

Self-Host - This page applies to self-hosted SigNoz editions.

Kubernetes

Prerequisites

  • Must be upgrading from < 0.76.0 and not installing from scratch

Upgrading

  1. Replace the yaml key queryService with signoz in your my-values.yaml file.

From

queryService:

To

signoz:
  1. Verify Existing PVC
kubectl get pvc -n platform -l app.kubernetes.io/component=query-service

If no PVCs are found, skip to step 4.

  1. Configure Migration

Update your my-values.yaml:

signoz:
  initContainers:
    migration:
      enabled: true
      image:
        registry: docker.io
        repository: busybox
        tag: 1.35
      command:
        - /bin/sh
        - -c
        - |
          echo "Running migration..."
          cp -pv /var/lib/old-signoz/signoz.db /var/lib/signoz/signoz.db
          echo "Migration complete..."
      additionalVolumes:
        - name: old-signoz-db
          persistentVolumeClaim:
            claimName: signoz-db-my-release-signoz-query-service-0
      additionalVolumeMounts:
        - name: old-signoz-db
          mountPath: /var/lib/old-signoz

Note that the claimName is the name of the PVC for the old query-service i.e. signoz-db-my-release-signoz-query-service-0. Replace it with the name of the PVC for your release. You can get the claim name from Step 1.

  1. Update and Deploy
helm repo add signoz https://charts.signoz.io
helm repo update signoz
helm upgrade --install my-release signoz/signoz --namespace platform --values my-values.yaml

For more details on the SigNoz upgrades on Kubernetes, please refer to the Operate SigNoz on Kubernetes guide.

  1. Verify Deployment
kubectl get pods -n platform

Look for my-release-signoz-0 running successfully.

  1. Disable Migration

Update my-values.yaml:

signoz:
  initContainers:
    migration:
      enabled: false

Then reapply:

helm upgrade --install my-release signoz/signoz --namespace platform --values my-values.yaml

Updating SigNoz Frontend Port

Update your my-values.yaml:

signoz:
  ingress:
    enabled: true
    hosts:
      - host: signoz.example.com
        paths:
          - path: /
            pathType: ImplementationSpecific
            port: 8080

(Optional) Deleting old unused volumes

kubectl delete pvc -n platform -l app.kubernetes.io/component=query-service
kubectl delete pvc -n platform -l app.kubernetes.io/component=alertmanager

Docker Standalone

Prerequisites

Upgrading

Follow the standard upgrade procedure. The upgrade will replace three containers (signoz-query-service, signoz-frontend, and signoz-alertmanager) with a single container (signoz).

Updating SigNoz Frontend Port

The upgrade will automatically update the frontend port to 8080. If you have a reverse proxy in front of SigNoz, update its configuration to point to the new port.

(Optional) Deleting old unused volumes

docker volume rm signoz-alertmanager

Docker Swarm

Prerequisites

Upgrading

Follow the standard upgrade procedure. The upgrade will replace three services (signoz_query-service, signoz_frontend, and signoz_alertmanager) with a single service (signoz_signoz).

Updating SigNoz Frontend Port

The upgrade will automatically update the frontend port to 8080. If you have a reverse proxy in front of SigNoz, update its configuration to point to the new port.

(Optional) Deleting old unused volumes

docker volume rm signoz-alertmanager

In case of Upgrade Failure

Reach out to us on Slack.

Last updated: March 12, 2026

Edit on GitHub

Was this page helpful?

Your response helps us improve this page.