From 12e38b7f693aa820000158188bba8ea9f6e63918 Mon Sep 17 00:00:00 2001 From: Thorian93 Date: Fri, 27 Aug 2021 09:40:11 +0200 Subject: [PATCH] Add clarification for inexperienced users We hit that issue ourselves and it took us weeks until someone pointed out our error. As it feels like this could hit other users inexperienced with kubernetes too, I propose this note. --- docs/migration.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/migration.md b/docs/migration.md index dba853cd..cb1f87c0 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -65,3 +65,17 @@ spec: old_postgres_configuration_secret: -old-postgres-configuration ... ``` +## Important Note +If you intend to put all the above in one file, make sure to separate each block with three dashes like so: + +```yaml +--- +# Secret key + +--- +# Database creds + +--- +# AWX Config +``` +Failing to do so will lead to an inoperable setup.