9 lines
143 B
Bash
9 lines
143 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo -e "\n====================\n"
|
||
|
echo -e "postgres is running"
|
||
|
echo -e "\n====================\n"
|
||
|
kubectl get all
|
||
|
|
||
|
echo -e "\n"
|