Member since
02-19-2021
1
Post
0
Kudos Received
0
Solutions
02-21-2021
06:48 AM
@asdusadeh You can get inside the CDSW DB by below steps but I would be very careful while make any changes as it can cause whole application down or data loss. Get the db pod name $ kubectl get pods -l role=db NAME READY STATUS RESTARTS AGE db-4066525870-68x44 1/1 Running 2 21d Exec into the running container and connect to the psql terminal with the sense user: kubectl exec db-4066525870-68x44 -ti -- psql -U sense
... View more