Skip to content
Snippets Groups Projects
Commit ae7eb8d3 authored by Pierre Ozoux's avatar Pierre Ozoux
Browse files

Fixes missing Namespace arg.

parent ed53a755
No related branches found
No related tags found
No related merge requests found
...@@ -64,8 +64,8 @@ function pg_ensure_rolling_update_is_done() { ...@@ -64,8 +64,8 @@ function pg_ensure_rolling_update_is_done() {
done done
echo "Rolling is done and successful!" echo "Rolling is done and successful!"
kubectl -n ${NS} exec -it ${PG_CLUSTER}-0 -- patronictl list kubectl -n ${NS} exec -it ${PG_CLUSTER}-0 -- patronictl list
kubectl logs ${PG_CLUSTER}-0 --tail=2 kubectl -n ${NS} logs ${PG_CLUSTER}-0 --tail=2
kubectl logs ${PG_CLUSTER}-1 --tail=2 kubectl -n ${NS} logs ${PG_CLUSTER}-1 --tail=2
} }
function pg_set_archive_mode_and_wait() { function pg_set_archive_mode_and_wait() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment