This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Create Table | |
CREATE TABLE orders ( | |
id serial NOT NULL PRIMARY KEY, | |
info jsonb NOT NULL | |
); | |
## Insert data | |
INSERT INTO orders (info) | |
VALUES('{ "customer": "Lily Bush", "items":34,"description":"foo"}'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
kubectl create -f pgadmin.yaml | |
sleep 15s | |
kubectl logs pgadmin-76gjgvvjh-yghg | |
## Access pgAdmin | |
## https://<IP>:31560 | |
## username/password: [email protected] / password |