This is an automated email from the ASF dual-hosted git repository. astefanutti pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/main by this push: new f276572 postgres user on readme was different than the one created on the yaml descriptor f276572 is described below commit f276572235f40a88c3d3c81c8d76bd568f669338 Author: Jose Luis <mual...@gmail.com> AuthorDate: Fri Aug 6 16:35:52 2021 +0200 postgres user on readme was different than the one created on the yaml descriptor Easy one. The configmap creates the postgresadmin user, whilst the readme tells to use the postgresadmin1. Typo probably --- examples/databases/postgres-deploy/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/databases/postgres-deploy/README.md b/examples/databases/postgres-deploy/README.md index 1c4a9ec..11b280f 100644 --- a/examples/databases/postgres-deploy/README.md +++ b/examples/databases/postgres-deploy/README.md @@ -15,7 +15,7 @@ Connection credentials available in the _postgres-configmap.yaml_ descriptor. ``` kubectl get svc postgres -psql -h <IP> -U postgresadmin1 --password -p <PORT> postgresdb +psql -h <IP> -U postgresadmin --password -p <PORT> postgresdb ``` ## Create a test database and table ```