We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent520aec4 commitbda5d45Copy full SHA for bda5d45
_docs/installation/codefresh-on-prem-upgrade.md
@@ -482,18 +482,19 @@ global:
482
483
#### Manual backup and restore
484
485
+
486
**Before the upgrade:**
487
-1.Obtain the PostgresSQL administrator password:
488
+1.Obtain the PostgresSQL administrator password:
489
```shell
490
NAMESPACE=codefresh
491
export PGPASSWORD=$(kubectl get secret --namespace $NAMESPACE cf-postgresql -o jsonpath="{.data.postgres-password}" | base64 --decode)
492
```
-1.Forward the PostgreSQL service port and place the process in the background:
493
+1.Forward the PostgreSQL service port and place the process in the background:
494
495
kubectl port-forward --namespace $NAMESPACE svc/cf-postgresql 5432:5432 &
496
-1.Create a directory for the backup files and make it the current working directory:
497
+1.Create a directory for the backup files and make it the current working directory:
498
499
mkdir psqlbackup
500
chmod o+w psqlbackup