From 939dd0b295bd4e0deae54227daddc3a055f2bc44 Mon Sep 17 00:00:00 2001 From: Marcelo Moreira de Mello Date: Tue, 30 Mar 2021 22:29:46 -0400 Subject: [PATCH] Warning for tower_admin_password_secret --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index d5c3dbb1..523fd445 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,9 @@ There are three variables that are customizable for the admin user account creat | tower_admin_email | Email of the admin user | test@example.com | | tower_admin_password_secret | Secret that contains the admin user password | Empty string | + +> :warning: **tower_admin_password_secret must be a Kubernetes secret and not your text clear password**. + If `tower_admin_password_secret` is not provided, the operator will look for a secret named `-admin-password` for the admin password. If it is not present, the operator will generate a password and create a Secret from it named `-admin-password`. To retrieve the admin password, run `kubectl get secret -admin-password -o jsonpath="{.data.password}" | base64 --decode`