diff options
author | RehanRaza <muhammad.rehan.raza@est.tech> | 2021-03-25 14:36:53 +0100 |
---|---|---|
committer | Krzysztof Opasiak <k.opasiak@samsung.com> | 2021-03-30 10:44:16 +0200 |
commit | e30f9b9f10b24646eb28428a20aa008c66a98eaf (patch) | |
tree | 2af4e1ec9ca15ba690016d2643e7c2225cdb5d3c /kubernetes/a1policymanagement/templates | |
parent | 20079a297aee94db6f5690a60a27fc34a72d0b35 (diff) |
[CCSDK] Fix error logs due to empty URL
The gating tests for Honolulu have reported flooding of error messages
in SDNC because the ricLink in values.yaml was not set.
The information about RICs can now be provided in values.yaml
Change-Id: I8ef67c27ed95432fb90de88b2976f39068fa7be0
Issue-ID: CCSDK-3227
Signed-off-by: RehanRaza <muhammad.rehan.raza@est.tech>
[Improve ric list generation]
Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
Diffstat (limited to 'kubernetes/a1policymanagement/templates')
-rw-r--r-- | kubernetes/a1policymanagement/templates/_ricgen.tpl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/kubernetes/a1policymanagement/templates/_ricgen.tpl b/kubernetes/a1policymanagement/templates/_ricgen.tpl new file mode 100644 index 0000000000..3e7371af74 --- /dev/null +++ b/kubernetes/a1policymanagement/templates/_ricgen.tpl @@ -0,0 +1,24 @@ +{{/* +# Copyright © 2021 Samsung Electronics +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +*/}} + +{{- define "a1p.generateRics" }} + {{- $ricList := (list) }} + {{- range $ric := .Values.rics }} + {{- $ricItem := (dict "name" $ric.name "baseUrl" $ric.link "controller" "controller1" "managedElementIds" $ric.managedElementIds) }} + {{- $ricList = append $ricList $ricItem }} + {{- end }} + {{- toPrettyJson $ricList }} +{{- end }} |