File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1- kubectl exec $POD -n postgres -- createdb pxdemo
1+ kubectl exec deploy/postgres -n postgres -- createdb pxdemo
22
3- kubectl exec $POD -n postgres -- psql -l
3+ kubectl exec deploy/postgres -n postgres -- psql -l
44
5- kubectl exec $POD -n postgres -- pgbench -i -s 50 pxdemo
5+ kubectl exec deploy/postgres -n postgres -- pgbench -i -s 50 pxdemo
66
7- kubectl exec $POD -n postgres -- psql pxdemo -c 'select count(*) from pgbench_accounts'
7+ kubectl exec deploy/postgres -n postgres -- psql pxdemo -c 'select count(*) from pgbench_accounts'
88
9- kubectl exec $POD -n postgres -- psql -c 'drop database pxdemo'
9+ kubectl exec deploy/postgres -n postgres -- psql -c 'drop database pxdemo'
1010
1111mongosh --host localhost --port 27017 --eval 'db.adminCommand({ fsync: 1, lock: true })'
1212
You can’t perform that action at this time.
0 commit comments