diff options
author | Jack Lucas <jflos@sonoris.net> | 2022-09-20 12:45:43 -0400 |
---|---|---|
committer | Jack Lucas <jflos@sonoris.net> | 2022-09-20 12:45:43 -0400 |
commit | dd83aeb75d67c05520c07dcf8e23f2db58eaa2b5 (patch) | |
tree | e0dbe3cd945745bdfc056348d8f9efa43235ecc9 | |
parent | f1c64f5aefd6d570dac5a9e946878d19d6669cb4 (diff) |
[DOCS] Allow override for microservice image repo
Add documentation for the "imageRepositoryOveride"
parameter, which allows specifying an alternative
repository (registry) for the microservice image.
Issue-ID: OOM-2978
Signed-off-by: Jack Lucas <jflos@sonoris.net>
Change-Id: I8541de71841394ce514b0fe3c91b37d0082053dd
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | docs/sections/dcaeservice_helm_template.rst | 17 |
2 files changed, 20 insertions, 0 deletions
@@ -5,3 +5,6 @@ site # IDEA intellij project files .idea/ *.iml + +# VSCode file +.vscode/ diff --git a/docs/sections/dcaeservice_helm_template.rst b/docs/sections/dcaeservice_helm_template.rst index a59d7359..b3dc29aa 100644 --- a/docs/sections/dcaeservice_helm_template.rst +++ b/docs/sections/dcaeservice_helm_template.rst @@ -88,6 +88,23 @@ Example: image: onap/org.onap.dcaegen2.services.prh.prh-app-server:1.5.6 +**imageRepositoryOverride**: + +Alternative repository for the Docker image for the microservice. +Optional. If this value is set, the Docker image for the microservice +will be pulled from the repository specified by this value, instead of +from the repository set by ``repositoryGenerator.repository``. Note that +this alternative repository is used only for the microservice image and +not for other images (such as images for initContainers). Note also that +the alternative repository must not use any form of authentication, +because there is no way to provide credentials for the repository. + +Example: + +:: + + imageRepositoryOverride: "myrepo.example.org:5000" + **global.pullPolicy** and **pullPolicy**: These settings control when |