diff options
author | Andreas Geissler <andreas-geissler@telekom.de> | 2023-09-26 16:33:01 +0200 |
---|---|---|
committer | Andreas Geissler <andreas-geissler@telekom.de> | 2023-09-26 16:35:10 +0200 |
commit | 533403925a6b60f4113c4d9e54cd99be36dc9cc5 (patch) | |
tree | ea65a3bf2f32289e3b93a8d99d8bd36f0475f740 | |
parent | 558b7f2176fe8a86e95b430ffcb32dcefb11d6b9 (diff) |
[COMMON] Prioritize the deployment of wrappers
Install the roles-wrapper and repository-wrapper before
all other ONAP components to speed up the installation
and reduce timeout failures
Issue-ID: OOM-3243
Change-Id: I712a324c521a137e6f19803f86c5b3b78cc42e4b
Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de>
-rwxr-xr-x | kubernetes/helm/plugins/deploy/deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/helm/plugins/deploy/deploy.sh b/kubernetes/helm/plugins/deploy/deploy.sh index 9d7ffd7d06..3b16bf35d5 100755 --- a/kubernetes/helm/plugins/deploy/deploy.sh +++ b/kubernetes/helm/plugins/deploy/deploy.sh @@ -271,7 +271,7 @@ deploy() { #So cache the results to prevent repeated execution. ALL_HELM_RELEASES=$(helm ls -q) - for subchart in strimzi cassandra mariadb-galera postgres ; do + for subchart in strimzi roles-wrapper repository-wrapper cassandra mariadb-galera postgres ; do SUBCHART_OVERRIDES=$CACHE_SUBCHART_DIR/$subchart/subchart-overrides.yaml SUBCHART_ENABLED=0 |