helm lint helm-chart-postgresql
helm package helm-chart-postgresql
helm install postgresql-psl postgresql-psl-0.1.0.tgz
psql -h 10.0.0.6 -p 32000 --username abc --dbname abcdb
root@pop-os:/opt/helm-content# psql -h 10.0.0.6 -p 32000 --username abc --dbname abcdb
Password for user abc:
psql (12.2 (Ubuntu 12.2-4))
Type "help" for help.
abcdb=# create table users (id int primary key not null, name text not null);
CREATE TABLE
abcdb=# \d users
Table "public.users"
Column | Type | Collation | Nullable | Default
--------+---------+-----------+----------+---------
id | integer | | not null |
name | text | | not null |
Indexes:
"users_pkey" PRIMARY KEY, btree (id)
abcdb=# insert into users (id,name) values (1,'john');
INSERT 0 1
abcdb=# select * from users;
id | name
----+------
1 | john
(1 row)
abcdb=#
abcdb=# \q
helm uninstall postgresql-psl