From dd83aeb75d67c05520c07dcf8e23f2db58eaa2b5 Mon Sep 17 00:00:00 2001 From: Jack Lucas Date: Tue, 20 Sep 2022 12:45:43 -0400 Subject: [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 Change-Id: I8541de71841394ce514b0fe3c91b37d0082053dd --- .gitignore | 3 +++ docs/sections/dcaeservice_helm_template.rst | 17 +++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/.gitignore b/.gitignore index 3bbd4962..94a90e34 100644 --- a/.gitignore +++ b/.gitignore @@ -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 -- cgit 1.2.3-korg