blob: afd3c38f3103a7c65041c02e696ccad92965d07b [file] [log] [blame]
Jack Lucasd41dbdb2021-02-16 11:07:28 -05001{{/*
2# Copyright © 2017 Amdocs, Bell Canada
3# Modifications Copyright © 2019 AT&T
Jack Lucasf86f6292022-06-08 09:12:29 -04004# Copyright (c) 2021-2022 J. F. Lucas. All rights reserved.
ajay_dp001cf5232a2021-04-13 20:48:07 +05305# Copyright (c) 2021 Nordix Foundation.
Jack Lucasd41dbdb2021-02-16 11:07:28 -05006#
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18*/}}
19
20{{/*
21dcaegen2-services-common.configMap:
22This template produces Kubernetes configMap(s) needed by a
23DCAE microservice.
24
25The template expects the full chart context as input. A chart for a
26DCAE microservice references this template using:
27{{ include "dcaegen2-services-common.configMap" . }}
28The template directly references data in .Values, and indirectly (through its
29use of templates from the ONAP "common" collection) references data in
30.Release.
31
32The template always produces a configMap containing the microservice's
Jack Lucasf86f6292022-06-08 09:12:29 -040033initial configuration data. (See the documentation for
Jack Lucasd41dbdb2021-02-16 11:07:28 -050034dcaegen2-services-common.microserviceDeployment for more details.)
35
Jack Lucasf86f6292022-06-08 09:12:29 -040036If the microservice is using one or more Data Router (DR) feeds, the
37template produces a configMap containing the information needed to
38provision the feed(s). An init container performs the provisioning.
39
40If the microservice acts as a DR publisher for one or more feeds, the
41template produces a configMap containing the information needed to
42provision the publisher(s). An init container performs the provisioning.
43
44If the microservice acts as a DR subscriber for one or more feeds, the
45template produces a configMap containing the information needed to
46provision the subscribeer(s). An init container performs the provisioning.
47
Jack Lucasd41dbdb2021-02-16 11:07:28 -050048*/}}
49
50{{- define "dcaegen2-services-common.configMap" -}}
Jack Lucasb880f892021-06-07 16:40:31 -040051{{- $appConf := .Values.applicationConfig | default (dict) -}}
Jack Lucasd41dbdb2021-02-16 11:07:28 -050052apiVersion: v1
53kind: ConfigMap
54metadata:
55 name: {{ include "common.fullname" . }}-application-config-configmap
56 namespace: {{ include "common.namespace" . }}
57 labels: {{ include "common.labels" . | nindent 6 }}
58data:
59 application_config.yaml: |
Jack Lucasb880f892021-06-07 16:40:31 -040060{{ $appConf | toYaml | indent 4 }}
Jack Lucasd41dbdb2021-02-16 11:07:28 -050061
ajay_dp001cf5232a2021-04-13 20:48:07 +053062{{- if .Values.drFeedConfig }}
63---
64apiVersion: v1
65kind: ConfigMap
66metadata:
67 name: {{ include "common.fullname" . }}-feeds-config
68 namespace: {{ include "common.namespace" . }}
69 labels: {{ include "common.labels" . | nindent 6 }}
70data:
71 {{- range $i, $feed := .Values.drFeedConfig }}
72 feedConfig-{{$i}}.json: |-
73 {{ $feed | toJson | indent 2 }}
74 {{- end }}
75{{- end }}
76
77{{- if .Values.drPubConfig }}
78---
79apiVersion: v1
80kind: ConfigMap
81metadata:
82 name: {{ include "common.fullname" . }}-drpub-config
83 namespace: {{ include "common.namespace" . }}
84 labels: {{ include "common.labels" . | nindent 6 }}
85data:
86 {{- range $i, $drpub := .Values.drPubConfig }}
87 drpubConfig-{{$i}}.json: |-
88 {{ $drpub | toJson | indent 2 }}
89 {{- end }}
90{{- end }}
91
92{{- if .Values.drSubConfig }}
93---
94apiVersion: v1
95kind: ConfigMap
96metadata:
97 name: {{ include "common.fullname" . }}-drsub-config
98 namespace: {{ include "common.namespace" . }}
99 labels: {{ include "common.labels" . | nindent 6 }}
100data:
101 {{- range $i, $drsub := .Values.drSubConfig }}
102 drsubConfig-{{$i}}.json: |-
103 {{ $drsub | toJson | indent 2 }}
104 {{- end }}
105{{- end }}
Maciej Wereski7000a7c2021-12-16 12:24:06 +0100106{{- end }}