From 133dfc5138803162107ecdec5aff837b6397c2a3 Mon Sep 17 00:00:00 2001 From: jamesmarshall24 Date: Fri, 1 Oct 2021 16:00:07 -0700 Subject: [PATCH] Note for wrapping pg password in quotes - Add a note suggesting the password for postgres stringData be wrapped in quotes especially for passwords with special characters. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 918fdff1..abe13040 100644 --- a/README.md +++ b/README.md @@ -378,6 +378,8 @@ stringData: type: Opaque ``` +> Please ensure that the value for the variable "password" is wrapped in quotes if the password contains any special characters. + > It is possible to set a specific username, password, port, or database, but still have the database managed by the operator. In this case, when creating the postgres-configuration secret, the `type: managed` field should be added. **Note**: The variable `sslmode` is valid for `external` databases only. The allowed values are: `prefer`, `disable`, `allow`, `require`, `verify-ca`, `verify-full`.