diff options
author | Andreas Geissler <andreas-geissler@telekom.de> | 2022-08-01 17:05:42 +0200 |
---|---|---|
committer | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2022-08-17 12:11:31 +0000 |
commit | 3d0089135c21eb199514d047781235656237eeab (patch) | |
tree | 91ac090ef4a60b6fe5fdb8a5fc0568a5ebacdf36 /kubernetes/onap/resources | |
parent | 0dd495974e85865b49c357690232dff7d9a57b3d (diff) |
[COMMON] Update Makefiles to enable parallelization
All Makefiles are updated to support SKIP_LINT option,
have a defined order of compilation (common -> components)
to support the parallel compilation of charts using:
make all -j8 (for 8 Jobs). Additionally use cm-push instead
of push to use the new K8S/Helm version
Issue-ID: OOM-3011
Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de>
Change-Id: If9903c9d5bc646b5ce54075acc616e98c4b6706e
Diffstat (limited to 'kubernetes/onap/resources')
-rw-r--r-- | kubernetes/onap/resources/overrides/onap-all-ingress-nginx-vhost.yaml | 35 |
1 files changed, 20 insertions, 15 deletions
diff --git a/kubernetes/onap/resources/overrides/onap-all-ingress-nginx-vhost.yaml b/kubernetes/onap/resources/overrides/onap-all-ingress-nginx-vhost.yaml index a56126a093..751f84814c 100644 --- a/kubernetes/onap/resources/overrides/onap-all-ingress-nginx-vhost.yaml +++ b/kubernetes/onap/resources/overrides/onap-all-ingress-nginx-vhost.yaml @@ -15,13 +15,25 @@ ################################################################### # This override file enables helm charts for all ONAP applications. ################################################################### +#ingress virtualhost based configuration +global: + ingress: + enabled: true + addTestingComponents: &testing true + centralizedLoggingEnabled: ¢ralizedLogging false cassandra: enabled: true mariadb-galera: enabled: true +postgres: + enabled: true aaf: enabled: true + aaf-sms: + cps: + # you must always set the same values as value set in cps.enabled + enabled: true aai: enabled: true appc: @@ -32,9 +44,12 @@ clamp: enabled: true cli: enabled: true -consul: - enabled: true +# Today, "contrib" chart that hosting these components must also be enabled +# in order to make it work. So `contrib.enabled` must have the same value than +# addTestingComponents contrib: + enabled: *testing +consul: enabled: true cps: enabled: true @@ -42,6 +57,8 @@ dcaegen2: enabled: true dcaegen2-services: enabled: true +dcaemod: + enabled: true holmes: enabled: true dmaap: @@ -57,7 +74,7 @@ nbi: policy: enabled: true portal: - enabled: true + enabled: false robot: enabled: true sdc: @@ -66,14 +83,6 @@ sdnc: enabled: true so: enabled: true - ingress: - enabled: true - so-monitoring: - ingress: - enabled: true - so-vnfm-adapter: - ingress: - enabled: true strimzi: enabled: true uui: @@ -87,7 +96,3 @@ vid: vnfsdk: enabled: true -#ingress virtualhost based configuration -global: - ingress: - enabled: true |