From 9a8c0a5f599f61d1aafaead950080a745d1396ea Mon Sep 17 00:00:00 2001 From: Jim Grady Date: Mon, 5 Feb 2024 10:41:53 -0500 Subject: [PATCH] Add instructions for installing updated Semantic Domain data (#1747) --- docs/deploy/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/deploy/README.md b/docs/deploy/README.md index 160bb61f8d..b9ee813630 100644 --- a/docs/deploy/README.md +++ b/docs/deploy/README.md @@ -386,6 +386,14 @@ Where: - The help text for `setup_combine.py` says that the `--tag` is optional and its default value is `latest`. That is used in the _Development Environment_ scenario; there are no images for _The Combine's_ components in `public.ecr.aws/thecombine` with the tag `latest`. + - The database image contains a script that will initialize the `SemanticDomains` and the `SemanticDomainTree` + collections on _first use_ of the database. The script will not be run automatically when the database is restarted + or updated. If the Semantic Domain data are updated, for example, adding a new language, then the script needs to be + rerun manually: + + ```console + kubectl -n thecombine exec deployment/database -- /docker-entrypoint-initdb.d/update-semantic-domains.sh + ``` ## Maintenance