-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathnuke-postgres.sh
More file actions
executable file
·49 lines (42 loc) · 1.87 KB
/
nuke-postgres.sh
File metadata and controls
executable file
·49 lines (42 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env bash
#
# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
###this script is intended to be used by developers against minikube to delete and recreate the nico database.
###It assumes that the API server is already down, usually accomplished by purging DevSpace prior to running the script.
POSTGRES_DB="${LOCAL_DEV_POSTGRES_DB:-nico}"
POSTGRES_USER="${LOCAL_DEV_POSTGRES_USER:-nico}"
MAX_RETRY=10
i=0
while [[ $i -lt $MAX_RETRY ]]; do
echo "Attempting to delete ${POSTGRES_DB} DB."
#something is holding the DB connection -- so murder it, i don't care this is local get out of the way.
kubectl exec -ti postgres-0 -n postgres -- psql -U postgres -c "SELECT pg_terminate_backend(pg_stat_activity.pid)
FROM pg_stat_activity
WHERE datname = '${POSTGRES_DB}'
AND pid <> pg_backend_pid();"
kubectl exec -ti postgres-0 -n postgres -- psql -U postgres -c "DROP DATABASE IF EXISTS \"${POSTGRES_DB}\";"
if [ $? -eq 0 ]; then
echo "${POSTGRES_DB} DB successfully deleted"
break
else
echo "DB still has connections, waiting to retry."
sleep 2
fi
i=$((i+1))
done
echo "Recreating ${POSTGRES_DB} db"
kubectl exec -ti postgres-0 -n postgres -- psql -U postgres -c "CREATE DATABASE \"${POSTGRES_DB}\" with owner \"${POSTGRES_USER}\";"