Hi, I am new to the ChirpStack, try to install ChirpStack on Kubernetes with helm charts.
Here is my steps.
helm upgrade --install -f postgresql-values.yaml postgresql bitnami/postgresql --version 15.0.0 -n chirpstack
helm upgrade --install -f redis-values.yaml redis bitnami/redis --version 21.2.0 -n chirpstack
helm upgrade --install -f chipstack-values.yaml chirpstack beeinventor/chirpstack -n chirpstack --version 0.1.10
kubectl get pods -n chirpstack
NAME READY STATUS RESTARTS AGE
chirpstack-application-server-58c4755c74-p9stk 0/1 CrashLoopBackOff 5 (82s ago) 4m21s
chirpstack-mosquitto-78f8d45898-fbpv2 1/1 Running 0 9m28s
postgresql-0 1/1 Running 0 31m
redis-master-0 1/1 Running 0 31m
redis-replicas-0 1/1 Running 0 31m
redis-replicas-1 1/1 Running 0 30m
redis-replicas-2 1/1 Running 0 29m
kubectl logs -f chirpstack-application-server-58c4755c74-p9stk -n chirpstack
Defaulted container “chirpstack-application-server” out of: chirpstack-application-server, wait-postgres (init), wait-redis (init)
time=“2025-06-19T20:08:04.720722295Z” level=info msg=“starting ChirpStack Application Server” docs=“https://www.chirpstack.io/” version=
time=“2025-06-19T20:08:04.720765314Z” level=info msg=“storage: setting up storage package”
time=“2025-06-19T20:08:04.720772766Z” level=info msg=“storage: setup metrics”
time=“2025-06-19T20:08:04.720785495Z” level=info msg=“storage: setting up Redis client”
time=“2025-06-19T20:08:04.720825575Z” level=info msg=“storage: connecting to PostgreSQL database”
time=“2025-06-19T20:08:04.871664003Z” level=info msg=“storage: applying PostgreSQL data migrations”
time=“2025-06-19T20:08:04.877339022Z” level=fatal msg=“setup storage error: storage: migrate up error: Dirty database version 27. Fix and force version.”
How can we move forward, start application-server?
Thanks!