9 lines
240 B
Bash
Executable File
9 lines
240 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# NOTE(simkir): Pipe your queries into this
|
|
# E.g.:
|
|
# - echo "select * from images" | ./query
|
|
# - cat upload.sql | ./query
|
|
|
|
kubectl --context oceanbox -n oceanbox exec -i svc/oceanbox-rw -c postgres -- psql aux
|