Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-12-06 21:08:22 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-12-06 21:08:22 +0300
commit5a73318262aab6ab952f2b7205b3674ea1f20053 (patch)
treee53191adbc529ce23ca08a73e1235c7b6fb6ced5 /scripts
parent552877c4d1c535f529be13862692a8fe826a72a2 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/review_apps/review-apps.sh11
1 files changed, 7 insertions, 4 deletions
diff --git a/scripts/review_apps/review-apps.sh b/scripts/review_apps/review-apps.sh
index 44dc2fdbc3d..48344dc3afe 100755
--- a/scripts/review_apps/review-apps.sh
+++ b/scripts/review_apps/review-apps.sh
@@ -375,12 +375,15 @@ function display_deployment_debug() {
echoinfo "[debugging data] k8s resources:"
kubectl get svc,pods,jobs -o wide --namespace "${namespace}"
- echoinfo "[debugging data] k8s events in namespace:"
- kubectl get events --sort-by='.metadata.creationTimestamp' --namespace "${namespace}"
+ echoinfo "[debugging data] PostgreSQL logs:"
+ kubectl logs -l app=postgresql --all-containers --namespace "${namespace}"
+
+ echoinfo "[debugging data] DB migrations logs:"
+ kubectl logs -l app=migrations --all-containers --namespace "${namespace}"
echoinfo "[debugging data] Webservice logs:"
kubectl logs -l app=webservice --all-containers --namespace "${namespace}"
- echoinfo "[debugging data] PostgreSQL logs:"
- kubectl logs -l app=postgresql --all-containers --namespace "${namespace}"
+ echoinfo "[debugging data] k8s events in namespace:"
+ kubectl get events --sort-by='.metadata.creationTimestamp' --namespace "${namespace}"
}