Skip to content

Instantly share code, notes, and snippets.

podman run -it --network=host --name postgres -e POSTGRES_PASSWORD=1234 postgres
podman run -it --network=host --name pgadmin4 -e "PGADMIN_DEFAULT_EMAIL=postgres" -e "PGADMIN_DEFAULT_PASSWORD=1234" -e "PGADMIN_LISTEN_PORT=5050" dpage/pgadmin4
psql -h 127.0.0.1 -p 5432 -d postgres -U postgres -W
oc delete pods -n rook-ceph --field-selector=status.phase=Failed