From a8a3501ef1e72ccc00575b47ee225c54a062f949 Mon Sep 17 00:00:00 2001 From: mw Date: Thu, 22 Dec 2022 19:00:54 +0100 Subject: [PATCH] update README --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 30a55d5..8d92427 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,12 @@ docker run -v $(pwd)/example_configs/fetchmailrc:/.fetchmailrc -v $(pwd)/example If using kubernetes the configuration files should be injected as secret into the pod executing pmml. -First create the secrets: +Create a namespace: +```sh +kubectl create ns pmml +``` + +Create secrets containing the configuration: ```sh kubectl create secret generic pmml-pmmlrc --from-file example_configs/pmmlrc -n pmml ```